View Single Post
Old 6th January 2011, 14:49   #3  |  Link
sneaker_ger
Registered User
 
Join Date: Dec 2002
Posts: 5,565
Don't forget that you don't only have have to activate H.264 and AC3 decoding in ffdshow, but also install an MKV splitter like Haali's Media Splitter. Also note that using "ConvertFPS()" will not work, the source filter has to do the conversion (Or someone has to write a filter with timecode input, but I haven't seen any yet).

If you want to try FFMpegSource as suggested by nm:
FFVideoSource("video.mkv", fpsnum=24000, fpsden=1001) #24000/1001~=23.978 fps, insert the framerate you need.

For DirectShowSource:
DirectShowSource("video.mkv", fps=24/1.001, convertfps=true)

/edit: forgot a quotation mark

Last edited by sneaker_ger; 6th January 2011 at 15:46.
sneaker_ger is offline   Reply With Quote