I am testing encodes by changing values in my script. My encodes are getting done in a few seconds instead of a few hours. The source is XviD. The source for encoding to as a test is DivX. I removed DeBlock. I thought that would put my encode speed to normal. It didn't help, so I put DeBlock back in. Here is my script. How can I get it to encode at normal?
Code:LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\deblock.dll") LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\msharpen.dll") AVISource("D:\The Breakfast Club (1985)\video.avi") DeBlock(35,0,0) BlackmanResize(448,464,8,1,624,574) AddBorders(16,56,16,56) Trim(0,-1).FadeOut(150) MSharpen(10,100,true,false,false)
+ Reply to Thread
Results 1 to 14 of 14
-
-
I think your problem is this:
Code:Trim(0,-1).FadeOut(150)
In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move. -
Remove the complete line. FitCD does give that line but with a "#"-sign in front of it. That means that the line will be ignored.
If I understand things right the "Trim"-command will try to give you all frames from frame 0 to frame -1 which isn't possible, that's why your script stops immediately.In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move. -
What frames are possible? Earlier I tried 65000,72000. It cut off parts of my movie.
Originally Posted by träskmannen -
Originally Posted by rocky12
http://avisynth.org/mediawiki/Trim -
Thank you. I didn't know that. I want the full movie, so I won't use Trim. What about FadeOut(150)? What does that do? Do I need it?
Originally Posted by jagabo -
Fadeout(150) means fade to black over the last 150 frames. If you check the AviSynth folder you will find documention that explains all of the built in functions and filters.
"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Originally Posted by rocky12"Shut up Wesley!" -- Captain Jean-Luc Picard
Buy My Books -
Probably not. I would want the picture.
Originally Posted by gadgetguy -
Just remove the complete line.
In the beginning the Universe was created. This has made a lot of people very angry and been widely regarded as a bad move.
Similar Threads
-
x264 encoding occurs too fast in pass 1
By codemaster in forum DVD RippingReplies: 5Last Post: 21st Sep 2011, 21:28 -
Fast encoding on a slow computer
By si4h in forum Newbie / General discussionsReplies: 11Last Post: 5th Aug 2010, 11:09 -
Fast Computer Extremly long time Encoding
By doz in forum Video ConversionReplies: 5Last Post: 24th Apr 2008, 13:45 -
fast video for iphone encoding?
By moxie in forum ffmpegX general discussionReplies: 1Last Post: 25th Mar 2008, 22:59 -
Encoding - Audio fine but video running fast
By adeleander in forum ffmpegX general discussionReplies: 3Last Post: 23rd Dec 2007, 14:11