blob: 5b84e9ea9be0e22c3e76ab312dc072f4a4720dd7 (
plain) (
tree)
|
|
local mutil = require 'mp.utils'
local util = require 'lib/util'
local subscene = require 'server/subscene'
local mkdir = function (path)
local info = mutil.file_info(path)
if info and not info.is_dir then
os.remove(path)
end
return os.execute('mkdir -p ' .. path)
end
local sub_needed = function ()
local duration, isvideo, name
name = mp.get_property_native('path')
if name:find('https?://www.youtube.com/') or
name:find('https?://youtu.be/') then
return false
end
duration = tonumber(mp.get_property('duration'))
if duration < 900 then -- duration is less than 15 minutes
return false
end
for _, v in pairs(mp.get_property_native('track-list')) do
if v['type'] == 'sub' then
return false
end
if v['type'] == 'video' then
isvideo = true
end
end
if not isvideo then
return false
end
return true
end
local sub_setup = function ()
local out, name
mp.osd_message('fetching subtitle')
out = mp.get_property_native('sub-file-paths')[1]
if out then
out = out:gsub('^~/', os.getenv('HOME') .. '/')
else
out = os.getenv('HOME') .. '/.local/share/mpv/subs'
mp.set_property('sub-file-paths', out)
end
mkdir(out)
name = mp.get_property_native('path'):match('[^/]*$')
name = util.string_rm_vid_ext(name)
out = out .. '/' .. name .. '.srt'
if subscene.search(name, out) then
mp.commandv('rescan_external_files')
mp.osd_message('fetch success')
else
mp.osd_message('fetch failure')
end
end
local file_listener = function ()
if sub_needed() then
sub_setup()
end
end
mp.register_event('file-loaded', file_listener)
|