Log in

View Full Version : raw yuv file import


Hans Ohlo
17th February 2007, 14:58
hi,
i used JM's h264 decoder to decode a h264 stream. it outputs raw yuv files which i am not able to import to avisynth via the RawImport plugin neither via ffdshow.

is there a way to import raw yuv files in avisynth or is there a decoder for this?

thx
-chris

orbitlee
17th February 2007, 15:44
You can try rawsource, such as
rawsource("raw.yuv", 1920, 1080, "I420")

Hans Ohlo
17th February 2007, 16:15
You can try rawsource, such as
rawsource("raw.yuv", 1920, 1080, "I420")
worked perfect. Thanks!