README.md (603B)
1 subsync is a simple CLI tool that synchronizes SubRip (srt) subtitles 2 automatically. You only have to know when the first and the last 3 subtitle should be shown. 4 5 ## examples 6 7 subsync -f 00:01:33,492 -l 01:39:23,561 -i file.srt 8 9 In the above command the input is the `file.srt`. We set the first 10 subtitle to be shown at `00:01:33,492` and the last to be shown at 11 `01:39:23,561`. The synced file will be saved at `file.srt`. 12 13 subsync -f 00:01:33,492 -l 01:39:23,561 -i file.srt -o newfile.srt 14 15 The above command is the same as the previous one, but the synced file 16 will be saved at `newfile.srt`.