VideoHelp Forum
+ Reply to Thread
Results 1 to 2 of 2
Thread
  1. I have multiple videos in 1080p HEVC format also have dual audio tracks

    I want to convert them to standard H264 720p format which my Samsung tv supports.

    What is the most convenient option which can convert
    Quote Quote  
  2. I'd use ffmpeg in a batch file. Something like:

    Code:
    md New
    for %%F in (*.mp4) do ( ffmpeg -i "%%~nxF" -vf scale=1280:-4 -c:v libx264 -preset slow -crf 18 -c:a copy -c:s copy "New\%%~nxF" )
    pause
    Put that batch file in a folder full of mp4 files and double click on it. A subfolder called New will be created and the mp4 files will be downscaled and reencoded with x264. The results will be saved in the New folder.
    Quote Quote  



Similar Threads

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