X-Git-Url: https://jfr.im/git/yt-dlp.git/blobdiff_plain/c24dfef63c55ef1a5424d11b485c3b76245448a4..add96eb9f84cfffe85682bf2fb85135746994ee8:/devscripts/fish-completion.py diff --git a/devscripts/fish-completion.py b/devscripts/fish-completion.py index c2f238798..5d2f68a48 100755 --- a/devscripts/fish-completion.py +++ b/devscripts/fish-completion.py @@ -1,19 +1,22 @@ -#!/usr/bin/env python -from __future__ import unicode_literals +#!/usr/bin/env python3 -import optparse +# Allow direct execution import os -from os.path import dirname as dirn import sys -sys.path.append(dirn(dirn((os.path.abspath(__file__))))) -import youtube_dl -from youtube_dl.utils import shell_quote +sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) + + +import optparse + +import yt_dlp +from yt_dlp.utils import shell_quote -FISH_COMPLETION_FILE = 'youtube-dl.fish' +FISH_COMPLETION_FILE = 'completions/fish/yt-dlp.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 @@ -30,7 +33,7 @@ def build_completion(opt_parser): for group in opt_parser.option_groups: for option in group.option_list: long_option = option.get_opt_string().strip('-') - complete_cmd = ['complete', '--command', 'youtube-dl', '--long-option', long_option] + complete_cmd = ['complete', '--command', 'yt-dlp', '--long-option', long_option] if option._short_opts: complete_cmd += ['--short-option', option._short_opts[0].strip('-')] if option.help != optparse.SUPPRESS_HELP: @@ -44,5 +47,6 @@ def build_completion(opt_parser): with open(FISH_COMPLETION_FILE, 'w') as f: f.write(filled_template) -parser = youtube_dl.parseOpts()[0] + +parser = yt_dlp.parseOpts(ignore_config_files=True)[0] build_completion(parser)