aboutsummaryrefslogtreecommitdiffstats
path: root/devscripts
diff options
context:
space:
mode:
authorFelix Stupp <felix.stupp@outlook.com>2020-05-16 18:09:12 +0200
committerFelix Stupp <felix.stupp@outlook.com>2020-05-16 18:45:40 +0200
commitefe87a10ae57fa74d7aa038109079a17a3c4fad2 (patch)
tree180e331360c00c8678d4fd7165780f90923fd4fc /devscripts
parent52c50a10af5de16165621f8929b64dc726774276 (diff)
downloadhypervideo-pre-efe87a10ae57fa74d7aa038109079a17a3c4fad2.tar.lz
hypervideo-pre-efe87a10ae57fa74d7aa038109079a17a3c4fad2.tar.xz
hypervideo-pre-efe87a10ae57fa74d7aa038109079a17a3c4fad2.zip
Added --remux-video option
Fixes #6996 - Supported formats declared: mp4, mkv - Added FFmpegVideoRemuxerPP as postprocessor - Added option to README and shell-completion scripts
Diffstat (limited to 'devscripts')
-rwxr-xr-xdevscripts/fish-completion.py1
-rw-r--r--devscripts/zsh-completion.in2
2 files changed, 3 insertions, 0 deletions
diff --git a/devscripts/fish-completion.py b/devscripts/fish-completion.py
index 51d19dd33..f69c9b232 100755
--- a/devscripts/fish-completion.py
+++ b/devscripts/fish-completion.py
@@ -14,6 +14,7 @@ FISH_COMPLETION_FILE = 'youtube-dl.fish'
FISH_COMPLETION_TEMPLATE = 'devscripts/fish-completion.in'
EXTRA_ARGS = {
+ 'remux-video': ['--arguments', 'mp4 mkv', '--exclusive'],
'recode-video': ['--arguments', 'mp4 flv ogg webm mkv', '--exclusive'],
# Options that need a file parameter
diff --git a/devscripts/zsh-completion.in b/devscripts/zsh-completion.in
index b394a1ae7..2658b3119 100644
--- a/devscripts/zsh-completion.in
+++ b/devscripts/zsh-completion.in
@@ -16,6 +16,8 @@ __youtube_dl() {
_path_files
elif [[ ${prev} =~ ${diropts} ]]; then
_path_files -/
+ elif [[ ${prev} == "--remux-video" ]]; then
+ _arguments '*: :(mp4 mkv)'
elif [[ ${prev} == "--recode-video" ]]; then
_arguments '*: :(mp4 flv ogg webm mkv)'
else