IŽd like to know what is the best configuration on the avisynth script for me to convert avi afiles to mpg (to make a DVD usig files from the computer). I was using this:
AVISource("file_name.avi")
LanczosResize(648,432,0,0.5)
AddBorders(36,24,36,24)
But when i looked the "how to" they said to use
AVISource("file_name.avi", False)
AddAudio()
ConvertToYUY2()
What does "false" "AddAudio()" and " convertToYUY2" mean? And it is recomendable to use this comands?
Thanks!!
+ Reply to Thread
Results 1 to 12 of 12
-
-
The "false" statement removes audio. This helped speed up the encoding. An older version of CCE had a bug. If there wasn't audio, it would crap out..
There's directions to copy an .AVSI file, that safely cancels out the audio. It's like a subprogram within AVISynth..
The addaudio() command called this subprogram up, and CCE was able to encode.. -
Any avsi file in the plugins directory, like the plugins will be autoloaded so that you can use functions in it. Such as AddAudio().
ConvertToYUY2() converts to YUY2 colourspace. Chances are that your source is YV12, which you should leave if you are using HCEnc, QuEnc, etc. CCE, I think can now handle YV12 fine, but internally converts to YUY2 anyway so there may be some speed gain having AVISynth do it. -
Your original script will work, with the possible addition of a "ConvertToRGB24()" command.
I was never able to get the AddAudio() funtion to work.ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W -
AUD=WAVSOURCE("ANY-WAVE-FILE-YOU-HAVE.WAV")
last command:
audiodub(vid,aud)
I have a 1 second wave file that I stick in my .AVS files. Doesn't have to sync, or even be related - just has to be audio. CCE doesn't know any better, and is as happy as a clam.ICBM target coordinates:
26° 14' 10.16"N -- 80° 16' 0.91"W
Similar Threads
-
Wiring configuration for HTPC
By Haopengyou in forum Media Center PC / MediaCentersReplies: 1Last Post: 19th Apr 2011, 20:03 -
Webcam streaming and configuration
By LAM_ in forum Video Streaming DownloadingReplies: 1Last Post: 31st Jul 2010, 08:31 -
MKV2AVI best configuration
By katalogas in forum Video ConversionReplies: 0Last Post: 15th Jun 2010, 05:38 -
BDRebuilder Configuration Tool
By fritzi93 in forum Blu-ray RippingReplies: 3Last Post: 25th Mar 2010, 16:58 -
Morgan M-JPEG configuration?
By terrypin in forum Newbie / General discussionsReplies: 0Last Post: 11th Jun 2009, 03:46