This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
sub-sentences.lua
150 lines (119 loc) · 5.29 KB
/
sub-sentences.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
-- Usage:
-- Ctrl+t - create subtitles with sentences (and automatically select as default subtitles with visibility set to true)
-- Note:
-- Requires the subtitle file (*.srt) alongside with the video file.
------- Script Options -------
srt_file_extensions = {".srt", ".en.srt", ".eng.srt"}
------------------------------
function srt_time_to_seconds(time)
local major, minor = time:match("(%d%d:%d%d:%d%d),(%d%d%d)")
local hours, mins, secs = major:match("(%d%d):(%d%d):(%d%d)")
return hours * 3600 + mins * 60 + secs + minor / 1000
end
function seconds_to_srt_time(time)
local hours = math.floor(time / 3600)
local mins = math.floor(time / 60) % 60
local secs = math.floor(time % 60)
local milliseconds = (time * 1000) % 1000
return string.format("%02d:%02d:%02d,%03d", hours, mins, secs, milliseconds)
end
function open_subtitles_file(srt_file_exts)
local srt_base_filename = mp.get_property("working-directory") .. "/" .. mp.get_property("filename/no-ext")
for i, ext in ipairs(srt_file_exts) do
local f, err = io.open(srt_base_filename .. ext, "r")
if f then
return f
end
end
return false
end
function read_subtitles(srt_file_exts)
local f = open_subtitles_file(srt_file_exts)
if not f then
return false
end
local data = f:read("*all")
data = string.gsub(data, "\r\n", "\n")
f:close()
local subs = {}
local subs_start = {}
local subs_end = {}
for start_time, end_time, text in string.gmatch(data, "(%d%d:%d%d:%d%d,%d%d%d) %-%-> (%d%d:%d%d:%d%d,%d%d%d)\n(.-)\n\n") do
table.insert(subs, text)
table.insert(subs_start, srt_time_to_seconds(start_time))
table.insert(subs_end, srt_time_to_seconds(end_time))
end
return subs, subs_start, subs_end
end
function convert_into_sentences(subs, subs_start, subs_end)
local sentences = {}
local sentences_start = {}
local sentences_end = {}
for i, sub_text in ipairs(subs) do
local sub_start = subs_start[i]
local sub_end = subs_end[i]
local sub_text = string.gsub(sub_text, "<[^>]+>", "")
if sub_text:find("^- ") ~= nil and sub_text:sub(3,3) ~= sub_text:sub(3,3):upper() then
sub_text = string.gsub(sub_text, "^- ", "")
end
if #sentences > 0 then
local prev_sub_start = sentences_start[#sentences]
local prev_sub_end = sentences_end[#sentences]
local prev_sub_text = sentences[#sentences]
if (sub_start - prev_sub_end) <= 2 and sub_text:sub(1,1) ~= '-' and
sub_text:sub(1,1) ~= '"' and sub_text:sub(1,1) ~= "'" and sub_text:sub(1,1) ~= '(' and
(prev_sub_text:sub(prev_sub_text:len()) ~= "." or prev_sub_text:sub(prev_sub_text:len()-2) == "...") and
prev_sub_text:sub(prev_sub_text:len()) ~= "?" and prev_sub_text:sub(prev_sub_text:len()) ~= "!" and
(sub_text:sub(1,1) == sub_text:sub(1,1):lower() or prev_sub_text:sub(prev_sub_text:len()) == ",") then
local text = sentences[#sentences] .. " " .. sub_text
text = string.gsub(text, "\n", "#")
text = string.gsub(text, "%.%.%. %.%.%.", " ")
text = string.gsub(text, "#%-", "\n-")
text = string.gsub(text, "#", " ")
if text:match("\n%-") ~= nil and text:match("^%-") == nil then
text = "- " .. text
end
sentences[#sentences] = text
sentences_end[#sentences] = sub_end
else
table.insert(sentences, sub_text)
table.insert(sentences_start, sub_start)
table.insert(sentences_end, sub_end)
end
else
table.insert(sentences, sub_text)
table.insert(sentences_start, sub_start)
table.insert(sentences_end, sub_end)
end
end
return sentences, sentences_start, sentences_end
end
function write_subtitles(subs, subs_start, subs_end, srt_filename)
if subs ~= nil then
local f = assert(io.open(srt_filename, "w"))
for i, sub_text in ipairs(subs) do
local sub_start = subs_start[i]
local sub_end = subs_end[i]
f:write(i, "\n")
f:write(seconds_to_srt_time(sub_start) .. " --> " .. seconds_to_srt_time(sub_end), "\n")
f:write(sub_text, "\n\n")
end
f:close()
return true
end
return false
end
function create_subtitles_with_sentences()
local subs, subs_start, subs_end = read_subtitles(srt_file_extensions)
local sentences, sentences_start, sentences_end = convert_into_sentences(subs, subs_start, subs_end)
local srt_filename = mp.get_property("working-directory") .. "/" .. mp.get_property("filename/no-ext") .. ".sentences.srt"
local ret = write_subtitles(sentences, sentences_start, sentences_end, srt_filename)
if ret then
mp.commandv("sub-add", srt_filename)
mp.set_property("sub-visibility", "yes")
mp.osd_message("Finished creating subtitles with sentences")
else
mp.osd_message("Failed to create subtitles with sentences")
end
end
mp.add_key_binding("ctrl+t", "create-subtitles-with-sentences", create_subtitles_with_sentences)