diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-07-07 02:51:29 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-07 02:51:29 +0530 |
commit | 3acf6d385600b1dd67e3b60ec28aba82a1043104 (patch) | |
tree | d82f87e75137f81f3020dfd54dde86e7577921bc /yt_dlp/YoutubeDL.py | |
parent | 46890374f74b4262a4ac7ff44d75e46316e00192 (diff) | |
download | hypervideo-pre-3acf6d385600b1dd67e3b60ec28aba82a1043104.tar.lz hypervideo-pre-3acf6d385600b1dd67e3b60ec28aba82a1043104.tar.xz hypervideo-pre-3acf6d385600b1dd67e3b60ec28aba82a1043104.zip |
[Funimation] Rewrite extractor (See desc) (#444)
* Support direct `/player/` URL
* Treat the different versions of an episode as different formats of a single video. So `experience_id` can no longer be used as the video `id` and the `episode_id` is used instead. This means that all existing archives will break
* Extractor options `language` and `version` to pre-select them
* Compat option `seperate-video-versions` to fall back to old behavior (including using the old video IDs)
Closes #428
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index d1f6d2ed1..2094cf9a5 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -392,11 +392,9 @@ class YoutubeDL(object): if True, otherwise use ffmpeg/avconv if False, otherwise use downloader suggested by extractor if None. compat_opts: Compatibility options. See "Differences in default behavior". - Note that only format-sort, format-spec, no-live-chat, - no-attach-info-json, playlist-index, list-formats, - no-direct-merge, embed-thumbnail-atomicparsley, - no-youtube-unavailable-videos, no-youtube-channel-redirect, - works when used via the API + The following options do not work when used through the API: + filename, abort-on-error, multistreams, no-live-chat, + no-playlist-metafiles. Refer __init__.py for their implementation The following parameters are not used by YoutubeDL itself, they are used by the downloader (see yt_dlp/downloader/common.py): |