2021-04-22 18:25:05 +01:00
|
|
|
|
diff --git "a/Convert Script \342\200\223 README.md" "b/Convert Script \342\200\223 README.md"
|
|
|
|
|
index 8e062c1..6e0d798 100644
|
|
|
|
|
--- "a/Convert Script \342\200\223 README.md"
|
|
|
|
|
+++ "b/Convert Script \342\200\223 README.md"
|
|
|
|
|
@@ -68,7 +68,7 @@ and set some options in ``mpv/lua-settings/convert_script.conf`` or with ``--scr
|
|
|
|
|
If you don’t want to upgrade your yad. Features like appending segments won’t be available.
|
|
|
|
|
|
|
|
|
|
libvpx_fps
|
|
|
|
|
- Default: --oautofps
|
|
|
|
|
+ Default: ""
|
|
|
|
|
FPS settings (or any other settings really) for libvpx encoding. Set it to --ofps=24000/1001 for example.
|
|
|
|
|
|
|
|
|
|
-Warning: Some of these options aren’t very robust and setting them to bogus values will break the script.
|
|
|
|
|
\ No newline at end of file
|
|
|
|
|
+Warning: Some of these options aren’t very robust and setting them to bogus values will break the script.
|
|
|
|
|
diff --git a/convert_script.lua b/convert_script.lua
|
|
|
|
|
index 17d3100..90f88ec 100644
|
|
|
|
|
--- a/convert_script.lua
|
|
|
|
|
+++ b/convert_script.lua
|
|
|
|
|
@@ -3,6 +3,12 @@ local msg = require 'mp.msg'
|
2016-03-19 01:32:29 +00:00
|
|
|
|
local opt = require 'mp.options'
|
|
|
|
|
local utils = require 'mp.utils'
|
|
|
|
|
|
2021-04-22 18:25:05 +01:00
|
|
|
|
+-- executables
|
|
|
|
|
+local mkvpropedit_exe = "mkvpropedit"
|
|
|
|
|
+local mkvmerge_exe = "mkvmerge"
|
|
|
|
|
+local yad_exe = "yad"
|
|
|
|
|
+local notify_send_exe = "notify-send"
|
2016-03-19 01:32:29 +00:00
|
|
|
|
+
|
|
|
|
|
-- default options, convert_script.conf is read
|
|
|
|
|
local options = {
|
|
|
|
|
bitrate_multiplier = 0.975, -- to make sure the file won’t go over the target file size, set it to 1 if you don’t care
|
2021-04-22 18:25:05 +01:00
|
|
|
|
@@ -14,7 +20,7 @@ local options = {
|
|
|
|
|
libvpx_options = "--ovcopts-add=cpu-used=0,auto-alt-ref=1,lag-in-frames=25,quality=good",
|
|
|
|
|
libvpx_vp9_options = "",
|
|
|
|
|
legacy_yad = false, -- if you don’t want to upgrade to at least yad 0.18
|
|
|
|
|
- libvpx_fps = "--oautofps", -- --ofps=24000/1001 for example
|
|
|
|
|
+ libvpx_fps = "", -- --ofps=24000/1001 for example
|
|
|
|
|
audio_bitrate = 112, -- mpv default, in kbps
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -247,12 +253,12 @@ function encode(enc)
|
2017-08-31 00:21:15 +01:00
|
|
|
|
if string.len(vf) > 0 then
|
|
|
|
|
vf = vf .. ","
|
|
|
|
|
end
|
|
|
|
|
- local sub_file_table = mp.get_property_native("options/sub-file")
|
|
|
|
|
+ local sub_file_table = mp.get_property_native("options/sub-files")
|
|
|
|
|
local sub_file = ""
|
|
|
|
|
for index, param in pairs(sub_file_table) do
|
|
|
|
|
sub_file = sub_file .. " --sub-file='" .. string.gsub(tostring(param), "'", "'\\''") .. "'"
|
|
|
|
|
end
|
|
|
|
|
- local audio_file_table = mp.get_property_native("options/audio-file")
|
|
|
|
|
+ local audio_file_table = mp.get_property_native("options/audio-files")
|
|
|
|
|
local audio_file = ""
|
|
|
|
|
for index, param in pairs(audio_file_table) do
|
|
|
|
|
audio_file = audio_file .. " --audio-file='" .. string.gsub(tostring(param), "'", "'\\''") .. "'"
|
2021-04-22 18:25:05 +01:00
|
|
|
|
@@ -354,9 +360,9 @@ function encode(enc)
|
2016-03-19 01:32:29 +00:00
|
|
|
|
if ovc == "gif" then
|
|
|
|
|
full_command = full_command .. ' --vf-add=lavfi=graph=\\"framestep=' .. framestep .. '\\" && convert '
|
|
|
|
|
.. tmpfolder .. '/*.png -set delay ' .. delay .. ' -loop 0 -fuzz ' .. fuzz .. '% ' .. dither .. ' -layers optimize '
|
|
|
|
|
- .. full_output_path .. ' && rm -rf ' .. tmpfolder .. ' && notify-send "Gif done") & disown'
|
2021-04-22 18:25:05 +01:00
|
|
|
|
+ .. full_output_path .. ' && rm -rf ' .. tmpfolder .. ' && ' .. notify_send_exe .. ' "Gif done") & disown'
|
2016-03-19 01:32:29 +00:00
|
|
|
|
else
|
|
|
|
|
- full_command = full_command .. ' && notify-send "Encoding done"; mkvpropedit '
|
2021-04-22 18:25:05 +01:00
|
|
|
|
+ full_command = full_command .. ' && ' .. notify_send_exe .. ' "Encoding done"; ' .. mkvpropedit_exe .. ' '
|
2016-03-19 01:32:29 +00:00
|
|
|
|
.. full_output_path .. ' -s title="' .. metadata_title .. '") & disown'
|
|
|
|
|
end
|
|
|
|
|
|
2021-04-22 18:25:05 +01:00
|
|
|
|
@@ -409,7 +415,7 @@ function encode_copy(enc)
|
2016-03-19 01:32:29 +00:00
|
|
|
|
sep = ",+"
|
|
|
|
|
|
|
|
|
|
if enc then
|
|
|
|
|
- local command = "mkvmerge '" .. video .. "' " .. mkvmerge_parts .. " -o " .. full_output_path
|
2021-04-22 18:25:05 +01:00
|
|
|
|
+ local command = mkvmerge_exe .. " '" .. video .. "' " .. mkvmerge_parts .. " -o " .. full_output_path
|
2016-03-19 01:32:29 +00:00
|
|
|
|
msg.info(command)
|
|
|
|
|
os.execute(command)
|
|
|
|
|
clear()
|
2021-04-22 18:25:05 +01:00
|
|
|
|
@@ -508,7 +514,7 @@ function call_gui ()
|
2016-03-19 01:32:29 +00:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
- local yad_command = [[LC_NUMERIC=C yad --title="Convert Script" --center --form --fixed --always-print-result \
|
2021-04-22 18:25:05 +01:00
|
|
|
|
+ local yad_command = [[LC_NUMERIC=C ]] .. yad_exe .. [[ --title="Convert Script" --center --form --fixed --always-print-result \
|
2016-03-19 01:32:29 +00:00
|
|
|
|
--name "convert script" --class "Convert Script" --field="Resize to height:NUM" "]] .. scale_sav --yad_table 1
|
|
|
|
|
.. [[" --field="Resize to width instead:CHK" ]] .. resize_to_width_instead .. " " --yad_table 2
|
|
|
|
|
if options.legacy_yad then
|
2021-04-22 18:25:05 +01:00
|
|
|
|
@@ -524,7 +530,7 @@ function call_gui ()
|
|
|
|
|
yad_command = yad_command
|
|
|
|
|
.. [[--field="2pass:CHK" "false" ]] --yad_table 5
|
|
|
|
|
.. [[--field="Encode options::CBE" '! --ovcopts=b=2000,cpu-used=0,auto-alt-ref=1,lag-in-frames=25,quality=good,threads=4' ]] --yad_table 6
|
|
|
|
|
- .. [[--field="Output format::CBE" ' --ovc=libx264! --oautofps --of=webm --ovc=libvpx' ]]
|
|
|
|
|
+ .. [[--field="Output format::CBE" ' --ovc=libx264! --of=webm --ovc=libvpx' ]]
|
|
|
|
|
.. [[--field="Simple:FBTN" 'bash -c "echo \"simple\" && kill -s SIGUSR1 \"$YAD_PID\""' ]]
|
|
|
|
|
advanced = true
|
|
|
|
|
else
|
|
|
|
|
@@ -734,4 +740,4 @@ mp.set_key_bindings({
|
|
|
|
|
|
|
|
|
|
mp.add_key_binding("alt+w", "convert_script", convert_script_hotkey_call)
|
|
|
|
|
|
|
|
|
|
-mp.register_event("tick", tick)
|
|
|
|
|
\ No newline at end of file
|
|
|
|
|
+mp.register_event("tick", tick)
|