AlanHK
13th March 2008, 14:26
I have an AVI file with a mono soundtrack that I want to author to DVD.
I make the AC3 soundtrack by piping the audio from an AVS into Aften, at a bitrate of 128 kb.
for %%I in (%1) do (
wavi %%I - | p:\aften\aften.exe -b 128 -s 1 -w 45 -dnorm 27 - %%~nI.ac3)
That gave me an AC3 file size 88 MB.
I was concerned my authoring software might not handle mono gracefully, so I added this line to the AVS:
MonoToStereo(last,last)
Then running exactly the same command gave me a (stereo) AC3 file, also 88 MB.
Though I can't hear a difference, I assume that the quality is actually lower for the stereo file. Is that correct? Is it true that each track is effectively 64 kb rate, or is it more complex?
I make the AC3 soundtrack by piping the audio from an AVS into Aften, at a bitrate of 128 kb.
for %%I in (%1) do (
wavi %%I - | p:\aften\aften.exe -b 128 -s 1 -w 45 -dnorm 27 - %%~nI.ac3)
That gave me an AC3 file size 88 MB.
I was concerned my authoring software might not handle mono gracefully, so I added this line to the AVS:
MonoToStereo(last,last)
Then running exactly the same command gave me a (stereo) AC3 file, also 88 MB.
Though I can't hear a difference, I assume that the quality is actually lower for the stereo file. Is that correct? Is it true that each track is effectively 64 kb rate, or is it more complex?