diff options
Diffstat (limited to 'youtube_dlc')
-rw-r--r-- | youtube_dlc/options.py | 5 | ||||
-rw-r--r-- | youtube_dlc/update.py | 2 | ||||
-rw-r--r-- | youtube_dlc/utils.py | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/youtube_dlc/options.py b/youtube_dlc/options.py index c94e3abb4..2804186ad 100644 --- a/youtube_dlc/options.py +++ b/youtube_dlc/options.py @@ -988,8 +988,9 @@ def parseOpts(overrideArguments=None): 'Give these arguments to the postprocessors. ' "Specify the postprocessor name and the arguments separated by a colon ':' " 'to give the argument to only the specified postprocessor. Supported names are ' - 'ExtractAudio, VideoRemuxer, VideoConvertor, EmbedSubtitle, Metadata, Merger, FixupStretched, FixupM4a, FixupM3u8, SubtitlesConvertor, SponSkrub and Default' - '. You can use this option multiple times to give different arguments to different postprocessors')) + 'ExtractAudio, VideoRemuxer, VideoConvertor, EmbedSubtitle, Metadata, Merger, FixupStretched, ' + 'FixupM4a, FixupM3u8, SubtitlesConvertor, EmbedThumbnail, XAttrMetadata, SponSkrub and Default. ' + 'You can use this option multiple times to give different arguments to different postprocessors')) postproc.add_option( '-k', '--keep-video', action='store_true', dest='keepvideo', default=False, diff --git a/youtube_dlc/update.py b/youtube_dlc/update.py index 12b6c8608..2c9ca3aca 100644 --- a/youtube_dlc/update.py +++ b/youtube_dlc/update.py @@ -32,7 +32,7 @@ def rsa_verify(message, signature, key): def update_self(to_screen, verbose, opener): """Update the program file with the latest version from the repository""" - return to_screen('Update is currently broken.\nVisit https://github.com/pukkandan/yt-dlc/releases/latest to get the latest version') + return to_screen('Update is currently broken.\nVisit https://github.com/pukkandan/yt-dlp/releases/latest to get the latest version') UPDATE_URL = 'https://blackjack4494.github.io//update/' VERSION_URL = UPDATE_URL + 'LATEST_VERSION' diff --git a/youtube_dlc/utils.py b/youtube_dlc/utils.py index cf9d8258a..a374a31bf 100644 --- a/youtube_dlc/utils.py +++ b/youtube_dlc/utils.py @@ -2332,8 +2332,8 @@ def bug_reports_message(): if ytdl_is_updateable(): update_cmd = 'type youtube-dlc -U to update' else: - update_cmd = 'see https://github.com/pukkandan/yt-dlc on how to update' - msg = '; please report this issue on https://github.com/pukkandan/yt-dlc .' + update_cmd = 'see https://github.com/pukkandan/yt-dlp on how to update' + msg = '; please report this issue on https://github.com/pukkandan/yt-dlp .' msg += ' Make sure you are using the latest version; %s.' % update_cmd msg += ' Be sure to call youtube-dlc with the --verbose flag and include its complete output.' return msg |