[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [microsound] OT: making 5.1 surround mixes



It can be very easy to do using cSound. It's free bur not so easy to 
use.

you musy create two files, an 'orchestra' and a 'score'.

then you must render it.

the filenames must be in the same folder that contains the two files, 
that must have the following content:

/*********BEGINNNING: 6CH.ORC**********/

sr	= 44100 ; the sample rate
kr	= 4410 ; the control rate
ksmps = 10 ; sample rate / control rate
nchnls = 6 ; number of channnels

; table for the file #1
gi1 ftgen 1, file1.wav, /* size in samples, must be a power of two */ 
256, 0, 0, 6 /* this one is the file format */
; table for the file #2
gi1 ftgen 1, file2.wav, /* size in samples, must be a power of two */ 
256, 0, 0, 6 /* this one is the file format */
; table for the file #3
gi1 ftgen 1, file3.wav, /* size in samples, must be a power of two */ 
256, 0, 0, 6 /* this one is the file format */
; table for the file #4
gi1 ftgen 1, file4.wav, /* size in samples, must be a power of two */ 
256, 0, 0, 6 /* this one is the file format */
; table for the file #5
gi1 ftgen 1, file5.wav, /* size in samples, must be a power of two */ 
256, 0, 0, 6 /* this one is the file format */
; table for the file #6
gi1 ftgen 1, file6.wav, /* size in samples, must be a power of two */ 
256, 0, 0, 6 /* this one is the file format */

instr	1
;	signal 		amplitude	freq	table (invoked file)
	a1	oscili	10000,	1,	1
	a2	oscili	10000,	1,	2
	a3	oscili	10000,	1,	3
	a4	oscili	10000,	1,	4
	a5	oscili	10000,	1,	5
	a6	oscili	10000,	1,	6
	; 6 channel output
	outch	1,	a1,	2,	a2,	2,	a3,	4,	a4,	5,	a5,	6,	a6

endin
/************END: 6CH.ORC***********/

/***********BEGINNING: GCH.SCO**********/
;instr start length

i1	0	8888
/************END: 6CH.SCO**********/

El feb 27, 2006, a las 9:46 AM, Joseph Scott escribió:

> what software do i need to make surround sound mixes of tracks and 
> burn them to CD/DVD to play on my home cinema system?
>
> i'd need to take 6 wav files, assign them to a speaker, possible 
> convert this into one file (??) and then burn them so that my home 
> cinema system will play the track in surround sound.
>
>
>
>
> please help me.