Is there a way for me to "batch" rip ASS subtitles, convert them to SRT, then remux them back with the MKV file. I want to do this with 150 tv episodes.
Is there an app or a !bash script that I can run in the folder that will do this, maybe with FFmpeg?
Thanks for any help!
+ Reply to Thread
Results 1 to 7 of 7
-
-
For Windows maybe this batch job:
Code:if not exist SUBSRT md SUBSRT for %%g in (*.mkv) do ( ffmpeg -i "%%g" -c:v copy -c:a copy -c:s srt "SUBSRT\%%g" )
-
-
Change the batch job to
Code:if not exist SUBSRT md SUBSRT for %%g in (*.mkv) do ( ffmpeg -i "%%g" -map 0 -c:v copy -c:a copy -c:s srt "SUBSRT\%%g" )
-
subtitle edit has a batch convert function.
[Attachment 57700 - Click to enlarge]
Similar Threads
-
Convert 2 .srt languages in 1 .ass
By islogged in forum SubtitleReplies: 4Last Post: 24th Nov 2020, 12:16 -
batch file remux .srt or .ass
By Tylerr in forum SubtitleReplies: 1Last Post: 16th Dec 2019, 02:09 -
Convert sub to srt/smi/psb/ssa/ass/son with Subresync
By FireWalker in forum User guidesReplies: 14Last Post: 12th Jul 2019, 01:03 -
TTML/CC to ass with positions?
By Hakunamatata67 in forum SubtitleReplies: 2Last Post: 25th May 2019, 02:36 -
[VidCoder] How to embed soft subs as SRT, not ASS?
By sakis14 in forum SubtitleReplies: 3Last Post: 26th Jan 2018, 06:07