> nope at least not nuendo 4 - when you selcet "split channels" it says it > cant do it - I know you can do it with 8 channel stuff. Audacity said the > same. I will tr some of the other solutions on here, thanks guys ;) > best, > Gus > >
The SoX page <http://sox.sourceforge.net/sox.html> gives: <<One use of the remix effect is to split an audio file into a set of files, each containing one of the constituent channels (in order to perform subsequent processing on individual audio channels). Where more than a few channels are involved, a script such as the following (Bourne shell script) is useful: #!/bin/sh chans=`soxi −c "$1"` while [ $chans −ge 1 ]; do chans0=`printf %02i $chans` # 2 digits hence up to 99 chans out=`echo "$1"|sed "s/\(.*\)\.\(.*\)/\1−$chans0.\2/"` sox "$1" "$out" remix $chans chans=`expr $chans − 1` done If a file input.wav containing six audio channels were given, the script would produce six output files: input-01.wav, input-02.wav, ..., input-06.wav.>> Which is a bit 'sledgehammer' for what you want (it goes off and finds how many channels it has to deal with (something you know) and then uses a loop to go over them (you could just 'hard code' your twelve channels)). The above should be fast (no GUI opening, no attempt to do it at playback speed). Michael > On 3 September 2014 13:28, Lasse Munk <lassemunkm...@gmail.com> wrote: > >> hi sorry i'm not infront of my nuendo computer at the moment, but it is >> possible in nuendo. You can even assign a shortcut for it. Try to search >> around for something like 'nuendo split multichannel to mono' >> >> >> 2014-09-03 17:20 GMT+02:00 Emanuele <lamacchiaco...@yahoo.it>: >> >> > You could also try Wave Agent from Sound Devices, free of charge from >> > their website. >> > >> > >> > >> > >> > On 03/09/2014 12:25, Pierre Alexandre Tremblay wrote: >> > >> >> there is also (on Mac) Scott Wilson's de-interleaver. >> >> >> >> http://www.birmingham.ac.uk/facilities/beast/research/mulch.aspx >> >> >> >> p >> >> >> >> Le 3 sept. 2014 à 10:20, Dave Malham <dave.mal...@york.ac.uk> a >> écrit : >> >> >> >> Some fine command line tools there, should be easy with them but >> Max >> >>> would be ok if if you're allergic to the command line, tho' I would >> use >> >>> Plogue Bidule as it's more straightforward for that sort of task. >> >>> Alternatively, Audacity will split to separate channels (works up to >> at >> >>> least 32 channels - just checked) but you might not wish to use >> that >> for >> >>> mixer. >> >>> >> >>> Dave >> >>> >> >>> >> >>> On 3 September 2014 04:55, Augustine Leudar <gustar...@gmail.com> >> wrote: >> >>> >> >>> I guess I could just use max with an sfplay going into seperate >> record >> >>>> channels - but I am trying to avoid it.... >> >>>> >> >>>> >> >>>> On 3 September 2014 00:54, Augustine Leudar <gustar...@gmail.com> >> >>>> wrote: >> >>>> >> >>>> Hi, >> >>>>> Does anyone know any software that will allow me to split an >> >>>>> interleaved >> >>>>> 10.2 file into its separate channels for mixing. I've tried >> audition >> >>>>> and >> >>>>> Nuendo to no avail. I'm on a PC at the moment so soundhack is not >> an >> >>>>> >> >>>> option, >> >>>> >> >>>>> best, >> >>>>> Gus >> >>>>> >> >>>>> >> >>>> >> > _______________________________________________ >> > Sursound mailing list >> > Sursound@music.vt.edu >> > https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe >> here, >> > edit account or options, view archives and so on. >> > >> >> >> >> -- >> // soundjuggling.com >> // 0045 26 84 44 41 >> -------------- next part -------------- >> An HTML attachment was scrubbed... >> URL: < >> https://mail.music.vt.edu/mailman/private/sursound/attachments/20140903/82edb204/attachment.html >> > >> _______________________________________________ >> Sursound mailing list >> Sursound@music.vt.edu >> https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, >> edit account or options, view archives and so on. >> > > > > -- > 07812675974 > -------------- next part -------------- > An HTML attachment was scrubbed... > URL: > <https://mail.music.vt.edu/mailman/private/sursound/attachments/20140904/f54bac89/attachment.html> > _______________________________________________ > Sursound mailing list > Sursound@music.vt.edu > https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, > edit account or options, view archives and so on. > _______________________________________________ Sursound mailing list Sursound@music.vt.edu https://mail.music.vt.edu/mailman/listinfo/sursound - unsubscribe here, edit account or options, view archives and so on.