diff options
author | louie-github <30176969+louie-github@users.noreply.github.com> | 2021-05-22 02:09:48 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-21 23:39:48 +0530 |
commit | a927acb1ecf7cef80c24eca604b73d9b5e45b732 (patch) | |
tree | 20555dce879f952815532c2335578a6a3b7d0873 /yt_dlp/options.py | |
parent | 09f1580e2d29e256d753a8112f093d4e0a54478e (diff) | |
download | hypervideo-pre-a927acb1ecf7cef80c24eca604b73d9b5e45b732.tar.lz hypervideo-pre-a927acb1ecf7cef80c24eca604b73d9b5e45b732.tar.xz hypervideo-pre-a927acb1ecf7cef80c24eca604b73d9b5e45b732.zip |
[ThumbnailsConvertor] Support conversion to `png` and make it the default (#333)
PNG, being a lossless format, should be a better default here compared to JPG since we won't be compressing to a lossy format and losing some of the original image data
PNG is also supported for embedding in all the formats similar to JPEG
Authored by: louie-github
Diffstat (limited to 'yt_dlp/options.py')
-rw-r--r-- | yt_dlp/options.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/options.py b/yt_dlp/options.py index 695e08594..c982dbb84 100644 --- a/yt_dlp/options.py +++ b/yt_dlp/options.py @@ -1253,7 +1253,7 @@ def parseOpts(overrideArguments=None): postproc.add_option( '--convert-thumbnails', metavar='FORMAT', dest='convertthumbnails', default=None, - help='Convert the thumbnails to another format (currently supported: jpg)') + help='Convert the thumbnails to another format (currently supported: jpg, png)') postproc.add_option( '--split-chapters', '--split-tracks', dest='split_chapters', action='store_true', default=False, |