Hi guys,
I've been using Acid v.4 to master a soundtrack in 5.1. Sadly I don't have the ac-3 plug in so I've had to make do with rendering the song to 6 mono Wav PCM tracks. I plan on adding some video footage to the audio and then burn it to dvd.
My question now is how do I go about burning it to a dvd for playback in 5.1?
Can I use Nero7 to burn it?
Do I need to convert it to ac3?
Many thanks.
+ Reply to Thread
Results 1 to 7 of 7
-
-
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
AviSynth is script driven. It's not particularly hard, but there is a bigger learning curve than GUI based programs. In the install folder for AviSynth there is documentation that will walk you through the basic steps.
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Is there any guides that can illustrated what I need to do as I'm utterly clueless!
-
https://forum.videohelp.com/topic99389.html#textroll
Here is a sample script for 6 mono WAV to 5.1 AC3.
The colorbars are strictly to provide video so QuEnc will accept the script, (even though it's set for Audio Encode only). Trim the Video to match your audio length. You'll have to replace the filenames for your own wave files. SSRC is only necessary if your source wavs are not already 48kHz.Code:Video = Colorbars(720, 480).ConvertToYV12().Trim(0, 3596) LC = WavSource("LeftChannel.wav").SSRC(48000) CC = WavSource("CenterChannel.wav").SSRC(48000) RC = WavSource("RightChannel.wav").SSRC(48000) LS = WavSource("LeftSurround.wav").SSRC(48000) RS = WavSource("RightSurround.wav").SSRC(48000) BC = WavSource("BaseChannel.wav").SSRC(48000) Audio = MergeChannels(LC, CC, RC, LS, RS, BC) AudioDub(Video, Audio)
Edit: Also note that I said this is how I would do it. There are other tools and methods that may be easier to learn, but this is the method I'm comfortable with and I know it creates a fully compatible AC3 file."Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books
Similar Threads
-
5.1 wav or 6 mono wavs to 5.1 Ac3 conversion
By wturner in forum AudioReplies: 38Last Post: 24th Nov 2013, 09:26 -
decode 5.1 matrix surround wav file to 6 mono wav files
By Zerrax in forum AudioReplies: 2Last Post: 24th Nov 2013, 08:39 -
How to use BeSweet or azidts to convert dts wav to mono wav?
By tcwillghsh in forum AudioReplies: 22Last Post: 28th Aug 2012, 14:36 -
Where Can I Buy a mono-stereo 3.5 mm mono to stereo L-adapter?
By solarblast in forum Camcorders (DV/HDV/AVCHD/HD)Replies: 0Last Post: 26th Nov 2009, 06:45 -
Converting a Mono Left Channel to Double Mono Left/ Right Channel on a DVD
By socool135 in forum AudioReplies: 5Last Post: 16th Sep 2007, 01:45



Quote