VideoHelp Forum




+ Reply to Thread
Page 8 of 13
FirstFirst ... 6 7 8 9 10 ... LastLast
Results 211 to 240 of 390
  1. Ok. Suppose i want to denoise a clip with NLmeansCL(uses GPU) what changes should i make in the script? should i call the setmtmode(5,2) before calling the NLMeansCL filter?
    Quote Quote  
  2. The setMTMode(X,Y) call is only allowed ONCE in the whole script, at the beginning, als following setMTMode-Calls only have one parameter, the mode.
    Modes change only through setMtMode-Calls, so if you are already in mode 5 you do not have to switch to mode 5, if you are in example in mode 2, switching is recommend.
    Quote Quote  
  3. What is the use of SetMemoryMax()? i've seen this used in some of the scripts of doom9 members.
    Quote Quote  
  4. How much memory does avisynth use by default?
    Quote Quote  
  5. The amount of memory avisynth itself uses by default is stated at the link I provided.
    (the amount of memory the avisynth plugins consume depends on the plugin and is independent of setMemoryMax)
    Quote Quote  
  6. The encode with MT has been going on for about 15 hrs now. the encoding fps is 0.370 as of now with the placebo preset.
    Quote Quote  
  7. placebo -> http://en.wikipedia.org/wiki/Placebo
    I totally don't get you 1st you want to speed up your '-preset slower' encode and then you choose '-preset placebo'.
    Quote Quote  
  8. I'm encoding with the placebo preset so that i can compare it with the slowest preset.
    Quote Quote  
  9. There's hardly any difference between slow and placebo. Not much difference between medium and placebo. As a rough indicator here are the results of some test I ran at different presets (CRF=18, quad core i5 2500K CPU, DVD source, no filtering):

    Code:
                    fps     bitrate
    -------------------------------
    ultrafast       457     5066
    superfast       386     3275
    veryfast        260     2119
    medium           82     2651
    slow             52     2591
    veryslow         13     2315
    placebo           5     2351
    Results will vary depending on the source. And obviously, overall speed will vary depending on CPU.
    Last edited by jagabo; 20th May 2013 at 09:11.
    Quote Quote  
  10. Can i use SubtitleEdit to OCR hardsubbed .avi videos?
    Quote Quote  
  11. I don't think so, but you can try,... SubExtractor and SubRip should be able to do it,..
    Quote Quote  
  12. Ok. Is there a software like avsmeter which can calculate the encoding speed of my avs script in x264?
    Quote Quote  
  13. What's wrong with AVSMeter ? It measures the speed of your avisynth script, which is the speed x264 can read from the script.
    Quote Quote  
  14. Originally Posted by x264 View Post
    Ok. Is there a software like avsmeter which can calculate the encoding speed of my avs script in x264?

    How about running a test encode with avs + x264 with your specific settings
    Quote Quote  
  15. Groucho2004
    Guest
    Originally Posted by poisondeathray View Post
    Originally Posted by x264 View Post
    Ok. Is there a software like avsmeter which can calculate the encoding speed of my avs script in x264?

    How about running a test encode with avs + x264 with your specific settings
    Too obvious.
    Quote Quote  
  16. Well it was not too obvious for me . The fps at which x264 encodes is much slower than that what i get when i run the script in avsmeter.
    Quote Quote  
  17. Surprise, x264 too needs cpu power for encoding, who would have thought that.
    And to state another obvious fact: encoding the script can't get faster than decoding the script,..
    Quote Quote  
  18. How do i encode an avs script with the same x264 settings, without having to type the same x264 code everytime?

    x264 --preset placebo --crf 17.0 --qcomp 0.7 --aq-strength 0.7 --psy-rd 0.7:0.2 -o "encode.mkv"
    i would like to use the same code for different avs files.
    Quote Quote  
  19. use a gui which supports profiles and learn to use it
    or
    learn how to write a batch script and write a script that does what you want
    or
    learn a programming language and write a small program that does what you want,..
    Quote Quote  
  20. Could you show me how to write a batch script?
    Quote Quote  
  21. Nope, my experience writing batch scripts under Windows are minimal at best, but it's not really hard to understand and with a little effort you can find some examples through the forum search and modify them to your needs.
    Quote Quote  
  22. SMdegrain has a parameter called tr(temporal radius). Will increasing the value for tr increase the quality of the denoising?
    Quote Quote  
  23. from the SMDegran script:
    Code:
    ### tr [int: 1, 2, 3] 
    ### --------------
    ### Temporal radius. Select between MDegrain 1, 2 or 3. Higher is better, but also much slower.
    ### Default is 2.
    see: http://forum.doom9.org/showthread.php?t=152326
    Quote Quote  
  24. Groucho2004
    Guest
    Originally Posted by x264 View Post
    Could you show me how to write a batch script?
    Here is a simple example:
    Code:
    cls
    @echo off
    echo.
    SET ENCODER=E:\Apps\VideoTools\x264\x264.exe
    SET SOURCE=F:\Test\test.avs
    SET STATS=F:\Test\test.stats
    SET TARGET=F:\Test\test.264
    SET BITRATE=6000
    
    
    SET PASS1="%SOURCE%" --bitrate %BITRATE% --profile high --level 4.0 --bluray-compat --tune film --colorprim "bt709" --transfer "bt709" --colormatrix "bt709" --sar 1:1 --b-pyramid none --b-adapt 2 --no-fast-pskip --no-dct-decimate --pic-struct --vbv-bufsize 22000 --vbv-maxrate 24000 --keyint 24 --ipratio 1.1 --direct auto --threads auto --thread-input --pass 1 --slow-firstpass --subme 3 --ref 4 --me hex --trellis 0 --stats "%STATS%" --output nul
    
    SET PASS2="%SOURCE%" --bitrate %BITRATE% --profile high --level 4.0 --bluray-compat --tune film --colorprim "bt709" --transfer "bt709" --colormatrix "bt709" --sar 1:1 --b-pyramid none --b-adapt 2 --no-fast-pskip --no-dct-decimate --pic-struct --vbv-bufsize 22000 --vbv-maxrate 24000 --keyint 24 --ipratio 1.1 --direct auto --threads auto --thread-input --pass 2 --subme 9 --ref 6 --me umh --trellis 1 --stats "%STATS%" --output "%TARGET%"
    
    "%ENCODER%" %PASS1%
    echo.
    "%ENCODER%" %PASS2%
    Quote Quote  
  25. Code:
    FOR %%A IN (*.avs) DO x264 --preset placebo --crf 17.0 --qcomp 0.7 --aq-strength 0.7 --psy-rd 0.7:0.2 --output "%%~encode.mkv" "%%~A"
    should also work as batch (not sure about the %)
    Quote Quote  
  26. Groucho2004
    Guest
    Originally Posted by Selur View Post
    Code:
    FOR %%A IN (*.avs) DO x264 --preset placebo --crf 17.0 --qcomp 0.7 --aq-strength 0.7 --psy-rd 0.7:0.2 --output "%%~encode.mkv" "%%~A"
    should also work as batch (not sure about the %)
    Oh, that's what he means by "same code for different avs files".
    Quote Quote  
  27. Thanks for the script.
    Quote Quote  
  28. like I wrote, I'm not sure if each %% should be replaced by a single % instead, but try&error should easily solve that.
    Quote Quote  
  29. for a batch file (.bat) it's "%%", for command line prompt it's "%"
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!