-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
encoder.lua
215 lines (186 loc) Β· 7.52 KB
/
encoder.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
--[[
Copyright: Ren Tatsumoto and contributors
License: GNU GPL, version 3 or later; http://www.gnu.org/licenses/gpl.html
Encoder provides interface for creating audio/video clips.
]]
local mp = require('mp')
local h = require('helpers')
local utils = require('mp.utils')
local this = {}
local function toms(timestamp)
--- Trim timestamp down to milliseconds.
return string.format("%.3f", timestamp)
end
local function construct_output_filename_noext()
local filename = mp.get_property("filename") -- filename without path
filename = h.remove_extension(filename)
if this.config.clean_filename then
filename = h.remove_text_in_brackets(filename)
filename = h.remove_special_characters(filename)
-- remove_text_in_brackets might leave spaces at the start or the end, so trim those
filename = h.strip(filename)
end
filename = string.format(
'%s_%s-%s',
filename,
h.human_readable_time(this.timings['start']),
h.human_readable_time(this.timings['end'])
)
return filename
end
function this.get_ext_subs_paths()
local track_list = mp.get_property_native('track-list')
local external_subs_list = {}
for _, track in pairs(track_list) do
if track.type == 'sub' and track.external == true then
external_subs_list[track.id] = track['external-filename']
end
end
return external_subs_list
end
function this.append_embed_subs_args(args)
local ext_subs_paths = this.get_ext_subs_paths()
for _, ext_subs_path in pairs(ext_subs_paths) do
table.insert(args, #args, table.concat { '--sub-files-append=', ext_subs_path, })
end
return args
end
this.mk_out_path_video = function(clip_filename_noext)
return utils.join_path(this.config.video_folder_path, clip_filename_noext .. this.config.video_extension)
end
this.mkargs_video = function(out_clip_path)
local args = {
this.player,
mp.get_property('path'),
'--loop-file=no',
'--keep-open=no',
'--no-ocopy-metadata',
'--no-sub',
'--audio-channels=2',
'--oacopts-add=vbr=on',
'--oacopts-add=application=voip',
'--oacopts-add=compression_level=10',
'--vf-add=format=yuv420p',
'--sub-font-provider=auto',
'--embeddedfonts=yes',
table.concat { '--sub-font=', this.config.sub_font },
table.concat { '--ovc=', this.config.video_codec },
table.concat { '--oac=', this.config.audio_codec },
table.concat { '--start=', toms(this.timings['start']) },
table.concat { '--end=', toms(this.timings['end']) },
table.concat { '--aid=', mp.get_property("aid") }, -- track number
table.concat { '--mute=', mp.get_property("mute") },
table.concat { '--volume=', mp.get_property('volume') },
table.concat { '--ovcopts-add=b=', this.config.video_bitrate },
table.concat { '--oacopts-add=b=', this.config.audio_bitrate },
table.concat { '--ovcopts-add=crf=', this.config.video_quality },
table.concat { '--ovcopts-add=preset=', this.config.preset },
table.concat { '--vf-add=scale=', this.config.video_width, ':', this.config.video_height },
table.concat { '--ytdl-format=', mp.get_property("ytdl-format") },
table.concat { '--o=', out_clip_path },
table.concat { '--sid=', mp.get_property("sid") },
table.concat { '--secondary-sid=', mp.get_property("secondary-sid") },
table.concat { '--sub-delay=', mp.get_property("sub-delay") },
table.concat { '--sub-visibility=', mp.get_property("sub-visibility") },
table.concat { '--secondary-sub-visibility=', mp.get_property("secondary-sub-visibility") },
table.concat { '--sub-back-color=', mp.get_property("sub-back-color") }
}
if this.config.video_fps ~= 'auto' then
table.insert(args, #args, table.concat { '--vf-add=fps=', this.config.video_fps })
end
args = this.append_embed_subs_args(args)
return args
end
this.mk_out_path_audio = function(clip_filename_noext)
return utils.join_path(this.config.audio_folder_path, clip_filename_noext .. this.config.audio_extension)
end
this.mkargs_audio = function(out_clip_path)
return {
this.player,
mp.get_property('path'),
'--loop-file=no',
'--keep-open=no',
'--no-ocopy-metadata',
'--no-sub',
'--audio-channels=2',
'--video=no',
'--oacopts-add=vbr=on',
'--oacopts-add=application=voip',
'--oacopts-add=compression_level=10',
table.concat { '--oac=', this.config.audio_codec },
table.concat { '--start=', toms(this.timings['start']) },
table.concat { '--end=', toms(this.timings['end']) },
table.concat { '--volume=', mp.get_property('volume') },
table.concat { '--aid=', mp.get_property("aid") }, -- track number
table.concat { '--oacopts-add=b=', this.config.audio_bitrate },
table.concat { '--ytdl-format=', mp.get_property("ytdl-format") },
table.concat { '--o=', out_clip_path }
}
end
this.create_clip = function(clip_type, on_complete)
if clip_type == nil then
return
end
if not this.timings:validate() then
h.notify_error("Wrong timings. Aborting.", "warn", 2)
return
end
h.notify("Please wait...", "info", 9999)
local output_file_path, args = (function()
local clip_filename_noext = construct_output_filename_noext()
if clip_type == 'video' then
local output_path = this.mk_out_path_video(clip_filename_noext)
return output_path, this.mkargs_video(output_path)
else
local output_path = this.mk_out_path_audio(clip_filename_noext)
return output_path, this.mkargs_audio(output_path)
end
end)()
print("The following args will be executed:", table.concat(h.quote_if_necessary(args), " ") )
local output_dir_path = utils.split_path(output_file_path)
local location_info = utils.file_info(output_dir_path)
if not location_info or not location_info.is_dir then
h.notify_error(string.format("Error: location %s doesn't exist.", output_dir_path), "error", 5)
return
end
local process_result = function(_, ret, _)
if ret.status ~= 0 or string.match(ret.stdout, "could not open") then
h.notify_error(string.format("Error: couldn't create clip %s.", output_file_path), "error", 5)
else
h.notify(string.format("Clip saved to %s.", output_file_path), "info", 2)
if on_complete then
on_complete(output_file_path)
end
end
end
h.subprocess_async(args, process_result)
this.timings:reset()
end
this.set_encoder_alive = function()
local args_mpvnet = { 'mpvnet', '--version' }
local process_result_mpvnet = function(_, ret, _)
-- for some reason stdout is empty
if ret.status ~= 0 then
this.alive = false
else
this.alive = true
this.player = 'mpvnet'
end
end
local args = { 'mpv', '--version' }
local process_result = function(_, ret, _)
if ret.status ~= 0 or string.match(ret.stdout, "mpv") == nil then
h.subprocess_async(args_mpvnet, process_result_mpvnet)
else
this.alive = true
this.player = 'mpv'
end
end
h.subprocess_async(args, process_result)
end
this.init = function(config, timings_mgr)
this.config = config
this.timings = timings_mgr
this.set_encoder_alive()
end
return this