Skip to content

cormullion/SubtitleStretcher.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SubtitleStretcher

Load, save, and modify subtitle files in .srt (subrip) format.

subd = loadsubtitles(filename) 

returns a dictionary of subtitles and timings.

To shift all subtitles by s seconds

shift!(subd, s)

To stretch subtitles, use stretch!(). For example, say the first subtitle has a time stamp of 1:40, but in the movie the matching scene appears at 1:32; and similarly, the final subtitle has a time stamp of 01:29:13, matching the movie at time 01:30:42, you can adjust all the subtitles with:

stretch!(subd, ["00:01:40" => "00:01:32", "01:29:13,009" => "01:30:42"])

which changes every timestamp proportionally, stretching them out as necessary. This might compensate for timestamps that gradually go adrift as the movie plays. It won't help if scenes have been cut, though.

To export the subtitle dictionary as a .srt file:

savesubtitles(subd, "movie.srt")

To load a .sub format file and save it as .srt, try:

subd = loadsubtitles("movie.sub")
savesubtitles(subd, filename * ".srt")

but this hasn't been thoroughly tested...

Coverage Status

codecov.io

About

load/save/edit movie subtitles in .srt (subrip) format

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages