I have a ton of old cartoons (100+) all have VOBSUB as subtitles. Id like to convert them to SRT either as a separate file or embedded back into the MKV. Is there a program that can do this for me automatically?
I know I can use mkvmergeGUI to extract VobSUB then convert it and remux with mkvmergeGUI again. But to do that 100+ times would be very tedious. Im willing to do it, but want to see if there is an easier way first?
+ Reply to Thread
Results 1 to 4 of 4
-
-
I wanted to suggest Subtitle Edit. But it seems it is currently broken with mkv/sub input both in cli and GUI batch mode (Tools->Batch convert). I will ask the author, maybe he can fix it quickly.
Are the subtitles always the same track number? Because then you could write a batch with first extracting, then converting and if wanted embedding:
Code:for %%a in (*.mkv) do ( mkvextract tracks "%%~a" "2:%%~na.idx" subtitleedit /convert "%%~na.sub" subrip mkvmerge -o "outputfolder\%%~a" "%%~a" "%%~na.srt" del %%~na.sub del %%~na.idx del %%~na.srt )
BTW: ffmpeg has Tesseract OCR engine. I wonder if it's possible to this with just ffmpeg in a single step.Last edited by sneaker; 2nd Mar 2019 at 04:37.
-
Recently, there are ways to convert SUB IDX files online into SRTs.
https://convert.jamack.net/en/ OR Use Subtitle Edit
Similar Threads
-
How to extract subtitles from a Blu-ray and convert to srt or sub/idx
By Baldrick in forum User guidesReplies: 35Last Post: 6th Dec 2021, 07:00 -
Mass convert multi 1080p BluRay REMUX AVC to multi 1080p hdlight
By levi59 in forum Newbie / General discussionsReplies: 5Last Post: 17th Dec 2017, 16:43 -
Extract subtitles from .ts file & convert to .srt
By xynd in forum SubtitleReplies: 4Last Post: 10th Dec 2017, 17:19 -
Srt to vobsub app for android?
By Borracho in forum SubtitleReplies: 0Last Post: 25th Dec 2016, 13:10 -
1-Click Solution for VobSub -> SRT
By therock003 in forum SubtitleReplies: 12Last Post: 26th Dec 2014, 20:10