i searched around but did not find an answer.
is there a way to save "new" presets (cmd line params) to call up instead of retyping or copy/pasting ? i do a lot flip/flopping between encode qualitys, i.e., LQ vs HQ, and so on for instance. it would be easier to make future adjustments to preset files as they occur.
i encode mainly with:
x264 --preset veryfast, x1, x2, x3, ... video.mkv
but would like to get it to this path if possible:
x264 LQ in_video out_video.mkv
x264 HQ in_video out_video.mkv
thank you.
+ Reply to Thread
Results 1 to 2 of 2
-
-
You just make some sort of BAT files and then you click on particular one to encode:
Code:@echo off @x264 --crf=18 --profile High --level 4.0 --ref 5 --vbv-bufsize 31000 --vbv-maxrate 30000 --output raw_video.h264 input_progressive.avs @echo+ @Bepipe --script "Import(^input_progressive.avs^)" | neroAacEnc.exe -lc -cbr 224000 -if - -of "audio.m4a" @echo+ if exist _video.mp4 (del _video.mp4) @mp4box -add raw_video.h264 -add audio.m4a _video.mp4 @echo+ pause
mkvmerge -o _video.mkv raw_video.h264 audio.m4a
BAT examples: http://files.videohelp.com/u/198160/ENCODE.zip
Similar Threads
-
Anamorphic Encoding in x264
By Akai-Shuichi in forum DVD RippingReplies: 4Last Post: 24th Nov 2012, 10:46 -
x264 Encoding Help
By Trismegistus in forum Video ConversionReplies: 14Last Post: 28th Apr 2012, 08:55 -
Multiavchd:override presets by using custom x264 cli
By lutinor in forum Newbie / General discussionsReplies: 0Last Post: 4th May 2011, 02:53 -
Re-encoding avi [to custom size]
By nic3 in forum Video ConversionReplies: 2Last Post: 30th Aug 2009, 03:53 -
Encoding using x264
By vipertongn in forum Video ConversionReplies: 4Last Post: 16th Jun 2008, 04:57