15 Sep 2011 16:34
Re: newbee want mixing a 3 channel wav file
S. Massy <lists <at> wolfdream.ca>
2011-09-15 14:34:36 GMT
2011-09-15 14:34:36 GMT
On Wed, Sep 14, 2011 at 06:45:48PM +0200, Willy WOLFF wrote: > Hi, > > I would like to mixing a 3 channel wav file with : > - first track of wave file 90% left panning > - second --------------- 50-50 pan > - third 90% right panning and amplifing 300% > and finaly output to one stereo wav file. > > This is my command, but doesn't wath i want : > > ecasound -a:1,2,3 -f:,3 -i tm-2011-09-12T22\:10\:46.wav \ > -a:1 -epp:10 \ > -a:2 -epp:50 \ > -a:3 -epp:90 -ea:300 \ > -a:all -f:,2 -o final.wav The problem here is that all chains take your 3 channels as input, so you have to do some channel manipulation for it to work properly. Try something like this (untested): ! ecasound -a:1,2,3 -f:,3 -i tm-2011-09-12T22\:10\:46.wav \ -a:1 -chorder:1,0,0 -epp:10 \ -a:2 -chorder:2,0,0 -epp:50 \ -a:3 -chorder:3,0,0 -epp:50 -ea:300 \ -a:all -f:,2 -o final.wav You get the idea. HTH, S.M. ------------------------------------------------------------------------------ Doing More with Less: The Next Generation Virtual Desktop What are the key obstacles that have prevented many mid-market businesses from deploying virtual desktops? How do next-generation virtual desktops provide companies an easier-to-deploy, easier-to-manage and more affordable virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/ _______________________________________________ Ecasound-list mailing list Ecasound-list <at> lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ecasound-list
RSS Feed