CCE crashes after a few minutes, so I tried ffmpeg source filter for AviSynth. But then I got this messege "no function named ffvideosource" and I tried to add "loadplugin("C:\ffms2.dll")" but It couldn't load the script.. Whats wrong here?
my code:
Code:loadplugin("C:\ffms\ffms2.dll") ffVideoSource("video.mkv", fps=23.976, audio=false) ConvertToYUY2() FadeIn(50) Lanczos4Resize(720,480,0.0,0.6)
+ Reply to Thread
Results 1 to 16 of 16
-
Last edited by walruss; 12th Sep 2012 at 22:35.
-
what's the actual error message? what version, operating system, fill in your computer details in your profile and what is in the error log?
--
"a lot of people are better dead" - prisoner KSC2-303 -
You probably have the wrong dll . If you have the Cplugin version you have to use LoadCPlugin . If you place the .dll and .avsi into the avisynth plugins folder it should autoload the generic vanilla version
Your arguments are wrong as well. It doesn't have audio parameter, or fps parameter . (fpsnum, fpsden instead) -
Still doesen't work. Tried all dll's on http://code.google.com/p/ffmpegsource/ with and without LoadCPlugin in the start and with and without fpsnum, fpsden. Still get "Unable to load C Plugin".
-
What software should I install for it to work on a 64-bit windows 7?
This is what I tried
1. v.2.5.8 MT, 64-bit, author SET, compiled by JoshyD
2. ffms-2.17-x64.7z -
That's not the problem anymore, I'm not getting my script to work. What software should I install for it to work on a 64-bit windows 7 is what im looking ansers for now.
-
That was the answer
Uninstall avisynth. Reinstall the correct version. Use the correct matching ffms2 dll
Also make sure your paths are correct -
Is this the rigt one to use for 64-bit?
v.2.5.8 MT, 64-bit, author SET, compiled by JoshyD -
http://sourceforge.net/projects/avisynth2/files/AviSynth_Alpha_Releases/
2.6.0 alpha 3 is stable , or you can use 2.5.8 official , it's up to you
ffms2 2.17 32bit
http://code.google.com/p/ffmpegsource/downloads/detail?name=ffms-2.17.7z
make sure your paths are correct. You listed 2 different paths in the 1st post -
It works
Can't thank you guys enough!
1000 thanks for this, It took me 2 days but it was worth the wait. -
what? you encoded it already without crashing ? or just loaded script correctly ?
-
BTW you should use the proper fps (24000/1001)
Add AssumeFPS(24000,1001)
Code:LoadPlugin("PATH\ffms2.dll") ffVideoSource("video.mkv") AssumeFPS(24000,1001) ConvertToYUY2() FadeIn(50) Lanczos4Resize(720,480,0.0,0.6)
ffVideoSource("video.mkv", fpsnum=24000, fpsden=1001)
Similar Threads
-
VirtualDub crash?
By goliso in forum Newbie / General discussionsReplies: 4Last Post: 8th Nov 2008, 17:21 -
FFDSHOW Crash Help
By ultraballs in forum Newbie / General discussionsReplies: 2Last Post: 20th Aug 2008, 02:53 -
mp4box crash
By ckamc in forum Video ConversionReplies: 5Last Post: 8th Feb 2008, 06:49 -
vdubmod crash
By RobMan in forum SubtitleReplies: 4Last Post: 31st Dec 2007, 08:22 -
System Crash
By maximusbob in forum SVCD2DVD & VOB2MPGReplies: 22Last Post: 10th Dec 2007, 20:09