diff options
author | Sergey M․ <dstftw@gmail.com> | 2017-11-04 22:11:39 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2017-11-04 22:11:39 +0700 |
commit | 187ee66c941d9c397a46ffa490375e2c405500e5 (patch) | |
tree | 2f75d4d93472dbf926efe7e9094e583cd86b9d5b | |
parent | 48107c198bd76e611e3d4c2486cdc5403829a05a (diff) |
[extractor/common] Add protocol for f4m formats
-rw-r--r-- | youtube_dl/extractor/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 64fb869aa..e2d9f52b0 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1310,6 +1310,7 @@ class InfoExtractor(object): 'url': manifest_url, 'manifest_url': manifest_url, 'ext': 'flv' if bootstrap_info is not None else None, + 'protocol': 'f4m', 'tbr': tbr, 'width': width, 'height': height, |