VideoHelp Forum




+ Reply to Thread
Results 1 to 2 of 2
  1. Member
    Join Date
    Mar 2011
    Location
    Oregon, US
    Search Comp PM
    How do I remove subtitles from 11 separate files using handbrake?? Using batch mode? Then resaving them somewhere else! John
    Quote Quote  
  2. Handbrake can't remux, only re-encode. Use ffmpeg in a batch file:

    Code:
    MD New
    For %%A in (*.mkv) do (
        ffmpeg -y -fflags +genpts -i "%%~nxA" -map 0 -c copy -sn "New\%%~nxA"
    )
    pause
    "-map 0" will copy everything (without it the default is just the first video and first audio track). "-sn" specifies "no subs". "-fflags +genpts" may not be necessary but shouldn't hurt. Change "*.mkv" to "*.mp4" if your videos are mp4.
    Last edited by jagabo; 22nd Mar 2022 at 07:25.
    Quote Quote  



Similar Threads

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