NSE - Importing Left and Right WAV for stereo possible ?
Forum rules
How to get the MP3-Player:
Upload a MP3 file where you play some notes using your sample.
Click the "PLACE INLINE" button after uploading the MP3 sample in order to automatically create a Flash MP3 player in your post!
Also check the Forum Rules, in particular rule #6 about the sharing of patches and samples.
How to get the MP3-Player:
Upload a MP3 file where you play some notes using your sample.
Click the "PLACE INLINE" button after uploading the MP3 sample in order to automatically create a Flash MP3 player in your post!
Also check the Forum Rules, in particular rule #6 about the sharing of patches and samples.
- cookie
- Patch Creator
- Posts: 845
- Joined: 08 Dec 2011, 17:38
- 13
- Your Nord Gear #1: Nord Stage 3
- Your Nord Gear #2: Nord Stage 2 EX
- Location: France
- Has thanked: 193 times
- Been thanked: 367 times

NSE - Importing Left and Right WAV for stereo possible ?
Quick one as I didn't find any options in the Nord Sample Editor, thought I would have it confirmed here.
In the Nord Sample Editor 3, is there any ways to import 2 wave files for a single note (left and right for C3 for i.e.) ?
If only mono per note is available, would you just select 1 of the panned wave or "mix and render" (in Audacity) both WAV to a single stereo WAV for the import ?
Thanks !
Fred
In the Nord Sample Editor 3, is there any ways to import 2 wave files for a single note (left and right for C3 for i.e.) ?
If only mono per note is available, would you just select 1 of the panned wave or "mix and render" (in Audacity) both WAV to a single stereo WAV for the import ?
Thanks !
Fred
Last edited by cookie on 08 Apr 2021, 09:31, edited 2 times in total.
- maxpiano
- Patch Creator
- Posts: 7174
- Joined: 27 Jun 2011, 13:29
- 14
- Your Nord Gear #1: Nord Stage 3
- Location: Italy
- Has thanked: 542 times
- Been thanked: 2515 times

Re: NSE - Importing Left and Right WAV for stereo possible ?
I don't remember if it is possible in NSE, however I offer you a simple solution: use Audacity to generate a stereo .wav file from the 2 mono .wav you havecookie wrote:Quick one,
I didn't find any options in the Nord Sample Editor, thought I would have it confirmed here.
In the Nord Sample Editor 3, is there any ways to import 2 wave files for a single note (left and right for C3 for i.e.) ?
If only mono per note is available, would you just select 1 of the panned wave or "mix and render" (in Audacity) both WAV to a single mono WAV for the import ?
Thanks !
Fred
Last edited by maxpiano on 07 Apr 2021, 17:45, edited 1 time in total.
- cookie
- Patch Creator
- Posts: 845
- Joined: 08 Dec 2011, 17:38
- 13
- Your Nord Gear #1: Nord Stage 3
- Your Nord Gear #2: Nord Stage 2 EX
- Location: France
- Has thanked: 193 times
- Been thanked: 367 times

Re: NSE - Importing Left and Right WAV for stereo possible ?
Thanks MaxPiano, indeed this is a solution if NSE is not able to import seperate waves.
I'll try to find some program with command line for batch processing.
Fred
I'll try to find some program with command line for batch processing.
Fred
- FZiegler
- Donator
- Posts: 2914
- Joined: 15 Dec 2019, 02:41
- 5
- Your Nord Gear #1: Nord Stage 3
- Location: Germany south-west
- Has thanked: 852 times
- Been thanked: 1012 times
- Contact:

Re: NSE - Importing Left and Right WAV for stereo possible ?
If ever you find something that blends two mono files into one stereo file automatically, let us know!
But maybe, it's safer to do it by hand and have it phase corrected - that way it would be easier to play it in mono afterwards. You only have to do it 88 times, I guess.
But maybe, it's safer to do it by hand and have it phase corrected - that way it would be easier to play it in mono afterwards. You only have to do it 88 times, I guess.
Stage-3-C (Rev.B 2.1) - Kawai VPC1 / Viscount Legend 70s / Yamaha CP33 - Hall of Fame & NeoVent2 - Behringer Flow-8 - K&M stands 18820+18811 / 18953+18952 - Samsung Tab S5e, MobileSheetsPro & AirTurn Duo200 - QSC K8.2s / Fischer InEars
-
baekgaard
- Posts: 1721
- Joined: 14 Jul 2017, 11:32
- 8
- Your Nord Gear #1: Nord Electro 6
- Your Nord Gear #2: Nord Stage 3
- Has thanked: 703 times
- Been thanked: 744 times

Re: NSE - Importing Left and Right WAV for stereo possible ?
Maybe something along the lines ofcookie wrote:Thanks MaxPiano, indeed this is a solution if NSE is not able to import seperate waves.
I'll try to find some program with command line for batch processing.
Fred
ffmpeg -i left.mp3 -i right.mp3 -filter_complex "[0:a][1:a]amerge=inputs=2[aout]" -map "[aout]" output.mka
... or thereabout (didn't check as I'm on my phone and not with the computer)
Sent from my phone in brevity
- maxpiano
- Patch Creator
- Posts: 7174
- Joined: 27 Jun 2011, 13:29
- 14
- Your Nord Gear #1: Nord Stage 3
- Location: Italy
- Has thanked: 542 times
- Been thanked: 2515 times

Re: NSE - Importing Left and Right WAV for stereo possible ?
baekgaard wrote:Maybe something along the lines ofcookie wrote:Thanks MaxPiano, indeed this is a solution if NSE is not able to import seperate waves.
I'll try to find some program with command line for batch processing.
Fred
ffmpeg -i left.mp3 -i right.mp3 -filter_complex "[0:a][1:a]amerge=inputs=2[aout]" -map "[aout]" output.mka
... or thereabout (didn't check as I'm on my phone and not with the computer)
Sent from my phone in brevity
Yes, also SoX (Sound eXchange) can be used for that http://sox.sourceforge.net/Main/HomePage
Last edited by maxpiano on 08 Apr 2021, 13:39, edited 3 times in total.
- cookie
- Patch Creator
- Posts: 845
- Joined: 08 Dec 2011, 17:38
- 13
- Your Nord Gear #1: Nord Stage 3
- Your Nord Gear #2: Nord Stage 2 EX
- Location: France
- Has thanked: 193 times
- Been thanked: 367 times

Re: NSE - Importing Left and Right WAV for stereo possible ?
Yes SoX can do it. Also ffmpeg. Also found some other tools with Windows GUI.
I made few tests and ended up with ffmpeg and the following command line in batch (using "for %i in...") :
ffmpeg -i Note-L.wav -i Note-R.wav -filter_complex "[0:a][1:a]join=inputs=2:channel_layout=stereo[a]" -map "[a]" Note-Stereo.wav
I'll create some nsmp and see if this makes a valuable difference (as the stereo is double size) from taking say the left note. Will share my findings here.
Thanks for the feedbacks !
Fred
I made few tests and ended up with ffmpeg and the following command line in batch (using "for %i in...") :
ffmpeg -i Note-L.wav -i Note-R.wav -filter_complex "[0:a][1:a]join=inputs=2:channel_layout=stereo[a]" -map "[a]" Note-Stereo.wav
I'll create some nsmp and see if this makes a valuable difference (as the stereo is double size) from taking say the left note. Will share my findings here.
Thanks for the feedbacks !
Fred
Last edited by cookie on 12 Apr 2021, 16:33, edited 1 time in total.
- cookie
- Patch Creator
- Posts: 845
- Joined: 08 Dec 2011, 17:38
- 13
- Your Nord Gear #1: Nord Stage 3
- Your Nord Gear #2: Nord Stage 2 EX
- Location: France
- Has thanked: 193 times
- Been thanked: 367 times

Re: NSE - Importing Left and Right WAV for stereo possible ?
I don't have my Nord at hand, but here is my first test working with mono samples left & right of a "night flute" from a Kontakt free library.
Created 3 nsmp (yes Stage 2 users !) with Left WAV only, Right WAV only and stero WAV (generated with mmpeg).
Raw stereo WAV files do sound better in the headphones, I believe this will be the same out from the Nord.
Don't hesitate to share your thoughts.
Fred
Created 3 nsmp (yes Stage 2 users !) with Left WAV only, Right WAV only and stero WAV (generated with mmpeg).
Raw stereo WAV files do sound better in the headphones, I believe this will be the same out from the Nord.
Don't hesitate to share your thoughts.
Fred
Last edited by cookie on 15 Apr 2021, 16:59, edited 2 times in total.