View Full Version : Source for mkv's
Tuik
10th February 2010, 14:24
Hello,
I've here some mkv's (with h364 codec) i would like to open in avisynth.
For avi's i know the best way to load them into avisynth it's using the AVISource. But for mkv's i don't have any idea. I tried DirectShowSource and FFMpegSource2 and, although they actually work, i'm not sure if they are the best options available. What do you suggest? Thanks
TheFluff
10th February 2010, 14:51
ffmpegsource2
Alex_ander
10th February 2010, 14:54
Demux to elementary .h264 in TSMuxer (not all audio stream types supported) or MKVExtractGUI and use DGAVCIndex/AVCSource.
rack04
10th February 2010, 15:02
I tried DirectShowSource and FFMpegSource2 and, although they actually work, i'm not sure if they are the best options available. What do you suggest? Thanks
What's best for you may be different than what's best for me. I prefer to index with DGDecNV or FFmpegSource2 and serve to Avisynth.
Tuik
10th February 2010, 15:14
Thanks,
So, do you think this is a good script?
Loadplugin("C:\Program Files (x86)\AviSynth 2.5\plugins\FFMS2.dll")
Import("C:\Program Files (X86)\AviSynth 2.5\plugins\Soothe.avs")
Import("C:\Program Files (X86)\AviSynth 2.5\plugins\LSFMod.avs")
FFmpegSource2("video.mkv")
dull = last
sharp = dull.LSFMod(ss_x=1.0,ss_y=1.0, Smode=5, strength=1000)
Soothe( sharp, dull, 30 )
Spline36Resize(720,304)
Thank you for the help!
Floatingshed
11th February 2010, 11:40
I have used both DirectShowSource and FFMpegSource2 and yes they work. However using MKVExtractGUI and DGAVCIndex/AVCSource has proven more stable and reliable for me on many occasions. I don't even consider another method now.
Dark Shikari
11th February 2010, 11:43
I have used both DirectShowSource and FFMpegSource2 and yes they work. However using MKVExtractGUI and DGAVCIndex/AVCSource has proven more stable and reliable for me on many occasions. I don't even consider another method now.That won't work for anything VFR though...
hydra3333
12th February 2010, 10:07
What works with VFR ?
Dark Shikari
12th February 2010, 10:15
What works with VFR ?Anything that doesn't extract to raw streams, thus removing timestamps. Though technically if you're using Avisynth, you have to create timecode files no matter what you do, since Avisynth is CFR-only.
vBulletin® v3.8.11, Copyright ©2000-2025, vBulletin Solutions Inc.