Log in

View Full Version : Why does CCE report that I don't have a YV12 decoder?


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)

Guest
17th November 2009, 00:46
Try this:

http://forum.doom9.org/showthread.php?s=&threadid=56972

EpheMeroN
18th November 2009, 08:23
Try this:

http://forum.doom9.org/showthread.php?s=&threadid=56972

After installing that, VDub and CCE won't even open the script with the following new error:

http://img693.imageshack.us/img693/7999/23318510.jpg (http://img693.imageshack.us/i/23318510.jpg/)

Guest
18th November 2009, 14:42
Maybe you moved something. Try redoing the project and check that the DLL is still where it is supposed to be.

MrC
18th November 2009, 15:37
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.

What error messages, or log files, did FAVC/AVStoDVD throw out? If you have installed both ffdshow and Haali, you should not fail with DirectShowSource...

:confused:

Bye