Log in

View Full Version : H264 AVI Source


Typhoon859
11th April 2009, 06:11
What AVISynth code do I need to encode an H264 video? AVISource doesn't seem to work. I probably need to include some decoding DLL which I wouldn't know about... I tried the MKV directly and then tried the AVI I ripped from the MKV. Neither work. What must be done?

DJ Bobo
11th April 2009, 13:39
DirectShowSource("filename.mkv")
should do the trick.

LoRd_MuldeR
11th April 2009, 15:20
DirectShowSource() will only work if suitable DirectShow-based splitters and decoders are installed on the system.

I'd give FFMpegSource() a try:
http://forum.doom9.org/showthread.php?t=127037

Anyway, the preferred way to access H.264 streams now is DGAVCIndex, but it doesn't support MKV files yet:
http://neuron2.net/dgavcdec/dgavcdec.html

Typhoon859
11th April 2009, 20:39
DirectShowSource("filename.mkv")
should do the trick.

DirectShowSource() will only work if suitable DirectShow-based splitters and decoders are installed on the system.

I'd give FFMpegSource() a try:
http://forum.doom9.org/showthread.php?t=127037

Anyway, the preferred way to access H.264 streams now is DGAVCIndex, but it doesn't support MKV files yet:
http://neuron2.net/dgavcdec/dgavcdec.html

Thanks guys.

EDIT: DirectShowSource seems to work just fine.