EpheMeroN
17th November 2009, 00:22
I have a .h264 video file inside an MKV container w/ AC3 audio and .srt subtitles. I want to transcode this file to dvd.
I tried various apps like FAVC, and AVStoDVD, etc, and they all failed to do the conversion automatically.
So, I extracted the video, audio, and subs using MKVExtractGUI. I then created a .dga file using neuron2's "DGAVCDec" software to frameserve via Avisynth to CCE.
CCE kept reporting to me that I didn't have a YV12 decoder installed. I have ffdshow-tryouts r3092 installed as well as Haali Media Splitter installed. So why would I be getting a YV12 error?
I managed to make it work by adding a ConvertToYUY2() line in my script. Here's that script:
LoadPlugin("C:\Program Files\AviSynth 2.5\Plugins\DGAVCDecode.dll")
AVCSource("E:\mkv-convserion\im_Track1.dga")
ConvertToYUY2()
Spline16Resize(720,360)
AddBorders(0,60,0,60)
I tried various apps like FAVC, and AVStoDVD, etc, and they all failed to do the conversion automatically.
So, I extracted the video, audio, and subs using MKVExtractGUI. I then created a .dga file using neuron2's "DGAVCDec" software to frameserve via Avisynth to CCE.
CCE kept reporting to me that I didn't have a YV12 decoder installed. I have ffdshow-tryouts r3092 installed as well as Haali Media Splitter installed. So why would I be getting a YV12 error?
I managed to make it work by adding a ConvertToYUY2() line in my script. Here's that script:
LoadPlugin("C:\Program Files\AviSynth 2.5\Plugins\DGAVCDecode.dll")
AVCSource("E:\mkv-convserion\im_Track1.dga")
ConvertToYUY2()
Spline16Resize(720,360)
AddBorders(0,60,0,60)