auto format
This commit is contained in:
parent
fa5965dbb6
commit
c070601427
|
@ -4,9 +4,9 @@ local mpopt = require('mp.options')
|
||||||
-- Config path: ~/.config/mpv/script-opts/videoclip.conf
|
-- Config path: ~/.config/mpv/script-opts/videoclip.conf
|
||||||
local config = {
|
local config = {
|
||||||
-- absolute paths
|
-- absolute paths
|
||||||
-- relative paths (e.g. ~ for home dir) do NOT work.
|
-- relative paths (e.g. ~ for home dir) do NOT work.
|
||||||
video_folder_path = string.format('%s/Videos/', os.getenv("HOME")),
|
video_folder_path = string.format('%s/Videos/', os.getenv("HOME")),
|
||||||
audio_folder_path = string.format('%s/Music/', os.getenv("HOME")),
|
audio_folder_path = string.format('%s/Music/', os.getenv("HOME")),
|
||||||
|
|
||||||
font_size = 24,
|
font_size = 24,
|
||||||
|
|
||||||
|
@ -41,17 +41,16 @@ end
|
||||||
local function add_extension(filename, extension)
|
local function add_extension(filename, extension)
|
||||||
return filename .. extension
|
return filename .. extension
|
||||||
end
|
end
|
||||||
|
|
||||||
local function remove_extension(filename)
|
local function remove_extension(filename)
|
||||||
return filename:gsub('%.%w+$','')
|
return filename:gsub('%.%w+$', '')
|
||||||
end
|
end
|
||||||
|
|
||||||
local function remove_text_in_brackets(str)
|
local function remove_text_in_brackets(str)
|
||||||
return str:gsub('%b[]','')
|
return str:gsub('%b[]', '')
|
||||||
end
|
end
|
||||||
|
|
||||||
local function remove_special_characters(str)
|
local function remove_special_characters(str)
|
||||||
return str:gsub('[%c%p%s]','')
|
return str:gsub('[%c%p%s]', '')
|
||||||
end
|
end
|
||||||
|
|
||||||
local function human_readable_time(seconds)
|
local function human_readable_time(seconds)
|
||||||
|
@ -61,9 +60,9 @@ local function human_readable_time(seconds)
|
||||||
|
|
||||||
local parts = {}
|
local parts = {}
|
||||||
|
|
||||||
parts.h = math.floor(seconds / 3600)
|
parts.h = math.floor(seconds / 3600)
|
||||||
parts.m = math.floor(seconds / 60) % 60
|
parts.m = math.floor(seconds / 60) % 60
|
||||||
parts.s = math.floor(seconds % 60)
|
parts.s = math.floor(seconds % 60)
|
||||||
parts.ms = math.floor((seconds * 1000) % 1000)
|
parts.ms = math.floor((seconds * 1000) % 1000)
|
||||||
|
|
||||||
local ret = string.format("%02dm%02ds%03dms", parts.m, parts.s, parts.ms)
|
local ret = string.format("%02dm%02ds%03dms", parts.m, parts.s, parts.ms)
|
||||||
|
@ -315,7 +314,7 @@ end
|
||||||
|
|
||||||
function Timings:reset()
|
function Timings:reset()
|
||||||
self['start'] = -1
|
self['start'] = -1
|
||||||
self['end'] = -1
|
self['end'] = -1
|
||||||
end
|
end
|
||||||
|
|
||||||
function Timings:validate()
|
function Timings:validate()
|
||||||
|
|
Loading…
Reference in a new issue