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/__init__.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/__init__.py')
-rw-r--r-- | yt_dlp/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/__init__.py b/yt_dlp/__init__.py index fd7729ee6..6f8f38b85 100644 --- a/yt_dlp/__init__.py +++ b/yt_dlp/__init__.py @@ -273,7 +273,7 @@ def _real_main(argv=None): 'filename', 'format-sort', 'abort-on-error', 'format-spec', 'no-playlist-metafiles', 'multistreams', 'no-live-chat', 'playlist-index', 'list-formats', 'no-direct-merge', 'no-youtube-channel-redirect', 'no-youtube-unavailable-videos', 'no-attach-info-json', - 'embed-thumbnail-atomicparsley', + 'embed-thumbnail-atomicparsley', 'seperate-video-versions', ] compat_opts = parse_compat_opts() |