🔢
Subtitle Synchronizer
A console tool that shifts all timestamps in an SRT subtitle file by a given number of milliseconds, reading from input.srt and writing the synchro…
A console tool that shifts all timestamps in an SRT subtitle file by a given number of milliseconds, reading from input.srt and writing the synchro…
A console tool that shifts all timestamps in an SRT subtitle file by a given number of milliseconds, reading from input.srt and writing the synchronized result to output.srt.
Please enter the shift in milliseconds: 2000
Given an input.srt containing timestamps like:
1
00:00:05,000 --> 00:00:08,500
Hello, world!
The resulting output.srt shifts every timestamp back by 2000 ms:
1
00:00:03,000 --> 00:00:06,500
Hello, world!
python main.py
Place an input.srt file in the same folder before running.
Standard library only.