View Single Post
  #1344  
Old 06-15-2018, 06:39 PM
pcspeak pcspeak is offline
Member
 
Join Date: May 2011
Posts: 32
pcspeak is on a distinguished road
Default

Re: How to use iView (ABC Australia) downloaders


Someone asked.
Package an ABC download in an MKV container, with subtitles added.
My batch file, 'ff MP4+subs-MKV v01.cmd'
Needs 'ffmpeg.exe' in the same directory - or modify the paths.

Code:
:: ABC - MP4+Subs to MKV
@echo off
:: vtt to srt
for %%a in (*.vtt) do ffmpeg -i "%%a" -y "%%~na.srt"
:: mp4+srt to mkv
 for %%a in ("*.srt") do if exist "%%~na.mp4" ffmpeg.exe -i "%%~na.mp4" -f srt -i "%%a" -map 0:0 -map 0:1 -map 1:0 -c:v copy -c:a copy -c:s srt -y "%%~na.mkv"
Cheers.

Last edited by pcspeak : 06-15-2018 at 09:31 PM.
Reply With Quote