+ Reply to Thread
Results 181 to 210 of 390
-
Should i change any of these settings before saving the file as .avi?
You still have the interlacing? What kind? The little bits you see from flapping mouths in animations? Then you have several choices. You can tighten up the CThresh, use override files, put on VinVerse afterwards (which you said you don't want to use), ignore it because it probably can't be seen when watching it at full speed, substitute a good frame from nearby using FreezeFrame, interpolate a new frame to replace it, or other things I haven't thought of.
Do you have an untouched sample showing the problem?Last edited by manono; 18th May 2013 at 14:54.
-
For heavy filtering and 2pass encoding, it might be a good idea to first encode the output to a lossless format and then use this output as source instead of running the filtering path 2 times (during 1st and 2nd pass).
-
The lossless .avi file is around 16 gb. Why is the filesize so big compared to the DVD vob files?
-
What happens is:
DVD content get's decoded to RAW uncompressed video data, this raw video data get's reencoded with a lossless codec, since the compression ratio of lossless content isn't really high you end up with larger files.
-> you might want to start reading up some of the basic of video compression,... -
What should i do in order to improve the encoding speed in x264?. I always use the preset : Slowest.
-
use a faster preset
slower means:
Code:- slower: --b-adapt 2 --direct auto --me umh --partitions all --rc-lookahead 60 --ref 8 --subme 9 --trellis 2
so lowering in example the lookahead value or subme or setting trellis to 0 might be the first things I would try if I want to basically stay with slower. -
Ok. Could you tell me what changes i need to make in this script for multithreading? The guide on the doom9 forum is confusing.
MPEG2Source("C:\Users\Abhijith Nair\Desktop\VTS_01_1.d2v", cpu=0)
trim(2157,31667)++trim(33226,33587)
crop(8,0,-6,-0)
Dehalo_Alpha_mt(darkstr=0.0, brightstr=1.3)
Dither_convert_8_to_16()
Dither_Quantize(10, reducerange=true, mode=0)
Dither_Out() -
it's not just changing the script, you also need another avisynth.dll and sometimes other filter dlls.
Your script will later probably look like:
Code:setMtMode(5,2) MPEG2Source("C:\Users\Abhijith Nair\Desktop\VTS_01_1.d2v", cpu=0) setMtMode(2) trim(2157,31667)++trim(33226,33587) crop(8,0,-6,-0) Dehalo_Alpha_mt(darkstr=0.0, brightstr=1.3) Dither_convert_8_to_16() Dither_Quantize(10, reducerange=true, mode=0) Dither_Out()
-
first line sets mode 5 and number of threads to 2
third line changes mode to 2.
as a rule of thumb:
a. source filters should always be used with mode 5
b. filters that use the gpu should always used with mode 5
c. nearly all other filters run fine with mode 2
Avsmeter crashed when i ran the above script. -
Is there anything that can be improved in the above scripts besides the filtering?
-
No clue what you mean when you write 'the CUDA error', but it guess you either do not have a license or you do not have a CUDA capable graphic card.
-
then it might be a good idea to contact the author (neuron2, which is also a member here and on doom9)
-
You don't need to use more RAM. What you want is to make sure CPU usage is near 100 percent while encoding (use Task Manager). If AviSynth is still a bottleneck increase the number of threads, SetMtMode(mode ,threads). If you plan to use the computer for other things while encoding set x264's priority to low.
Last edited by jagabo; 19th May 2013 at 16:21.
-
How do i know which mode i have to use?
as a rule of thumb:
a. source filters should always be used with mode 5
b. filters that use the gpu should always used with mode 5
c. nearly all other filters run fine with mode 2
Similar Threads
-
Filtering
By x264 in forum Newbie / General discussionsReplies: 4Last Post: 19th Feb 2013, 02:47 -
Need help filtering Jaggies
By LadyLiete in forum RestorationReplies: 12Last Post: 21st Aug 2012, 06:30 -
Filtering during MPEG capture
By TB Player in forum Capturing and VCRReplies: 9Last Post: 31st Dec 2010, 18:53 -
Questing about filtering with one of your guides
By Oni87 in forum Newbie / General discussionsReplies: 6Last Post: 21st Oct 2008, 17:26 -
Audio Filtering Program
By dawson54 in forum AudioReplies: 6Last Post: 13th May 2008, 08:10