diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-01-10 05:45:51 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-01-10 05:45:51 +0100 |
commit | 6271f1cad9331cbdb274906d8330736fb888bda2 (patch) | |
tree | 839365b1b4c6f04535098ba1aff55366914e11b3 /youtube_dl/extractor/common.py | |
parent | fb4b030aafee72801b47d4715391bd5822f80e13 (diff) |
[youtube|ffmpeg] Automatically correct video with non-square pixels (Fixes #4674)
Diffstat (limited to 'youtube_dl/extractor/common.py')
-rw-r--r-- | youtube_dl/extractor/common.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index cd155a090..363e2000c 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -114,6 +114,9 @@ class InfoExtractor(object): to add to the request. * http_post_data Additional data to send with a POST request. + * stretched_ratio If given and not 1, indicates that the + video's pixels are not square. + width : height ratio as float. url: Final video URL. ext: Video filename extension. format: The video format, defaults to ext (used for --get-format) |