VideoHelp Forum




+ Reply to Thread
Results 1 to 2 of 2
  1. Member vhelp's Avatar
    Join Date
    Mar 2001
    Location
    New York
    Search Comp PM
    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.
    Quote Quote  
  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
    that is for mp4 so to get mkv I guess you can use mkvmerge instead of mp4box:
    mkvmerge -o _video.mkv raw_video.h264 audio.m4a

    BAT examples: http://files.videohelp.com/u/198160/ENCODE.zip
    Quote Quote  



Similar Threads

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