1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 18:39:29 +00:00
This commit is contained in:
Lucas Eduardo 2023-10-18 03:15:34 -03:00 committed by GitHub
commit 661631a1aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -815,15 +815,15 @@ def parseOpts(overrideArguments=None):
action='store_true', dest='nopostoverwrites', default=False,
help='Do not overwrite post-processed files; the post-processed files are overwritten by default')
postproc.add_option(
'--embed-subs',
'--embed-subs', '--add-subs',
action='store_true', dest='embedsubtitles', default=False,
help='Embed subtitles in the video (only for mp4, webm and mkv videos)')
postproc.add_option(
'--embed-thumbnail',
'--embed-thumbnail', '--add-thumbnail',
action='store_true', dest='embedthumbnail', default=False,
help='Embed thumbnail in the audio as cover art')
postproc.add_option(
'--add-metadata',
'--add-metadata', '--embed-metadata',
action='store_true', dest='addmetadata', default=False,
help='Write metadata to the video file')
postproc.add_option(