ain't it suppose to work on 90~100 % for faster encoding?
+ Reply to Thread
Results 1 to 10 of 10
-
settings : program --crf 14.9 --output "output" "input" (nothing special)
script
Mpeg2Source("D:\VIDEO_TS.d2v", CPU2="ooooxx")
TFM().TDecimate(Mode=1)
ColorMatrix(mode="rec.601->rec.709")
ColorYUV(cont_y=-5, cont_u=0, cont_v=0,gamma_y=-20)
Santiag(2,2)
McTemporalDenoise(settings="medium")
Hysteria(strength=5.0, maxchg=25, lowthresh=26, highthresh=20)
nnedi3_rpow2(2, cshift="spline16resize", fwidth=960, fheight=720)
Hysteria(strength=8.0, maxchg=32, lowthresh=9)
Dehalo_alpha(rx=3, ry=3, darkstr=0.3, brightstr=0.3)
Blur(0.5)
source : dvd NTSC files
i get 3.1 fps -
Last edited by zanzar; 17th Dec 2016 at 09:10.
-
You need a multithreaded build of AviSynth if you want multithreading.
http://forum.doom9.org/showthread.php?t=148782
You'll also need to add MT commands to your script.
Code:SetMtMode(5,4) # mode 5 for Mpeg2Source, 4 threads -- more or less depending on CPU and script Mpeg2Source(...) SetMtMode(2) # mode 2 for the rest of the script RestOfScript()
-
Or instead of multithreaded Avisynth you can run two encodes at a time.
For single encoding jobs with x264 I'd make a copy of the script and add Trim() to the end of each so each script encodes half the video, then run them simultaneously. To ensure you can join the output files with MKVMergeGUI, it requires --stitchable in the x264 command line. I don't know if x265 has or requires such an option to append video. Anyone know? -
It does as long as you tell MeGUI to use the "installed" Avisynth rather than it's portable version. Of course the installed Avisynth has to be a multithreaded version and MeGUI won't add the multithreading stuff to a script for you, but you can add it yourself or create an AviSynth script template that includes the required MT stuff.
-
I don't know if x265 has or requires such an option to append video. Anyone know?
To encode a raw is simple. just specify .h265 to the filename for the encode. ie, "video1.h265" "video2.h265" and append via dos, copy video1.h265 + video2.h265 video.h265, and then use whatever you prefer to rewrap them, ie, ffmpeg -i video.h265 -vcodec copy -o video.mkv
Similar Threads
-
I found MEGUI X265 HEVC in MEGUI.ORG !!!!
By Stears555 in forum Video ConversionReplies: 11Last Post: 2nd Apr 2016, 14:00 -
MeGUI x265 Problem With Audio ..
By ashvolcano99 in forum Video ConversionReplies: 1Last Post: 18th Dec 2015, 12:47 -
Need help, encoding not working while charging avs script (MeGUI)
By bel57 in forum Newbie / General discussionsReplies: 14Last Post: 14th Dec 2015, 16:41 -
Can't get 100% cpu usage when using Megui
By Tylerr in forum Video ConversionReplies: 5Last Post: 30th Jul 2014, 21:19 -
No advanced settings for x265 in megui and slow encoding
By rated_x75 in forum Video ConversionReplies: 2Last Post: 23rd Mar 2014, 07:24