diff options
author | James Taylor <user234683@users.noreply.github.com> | 2020-12-12 23:11:54 -0800 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2020-12-12 23:11:54 -0800 |
commit | 9d0be82e7425641a58a551fefce26385dee2f9d3 (patch) | |
tree | becf2435ebed465914845747199925606cfd54ac /youtube/yt_data_extract/__init__.py | |
parent | 6443cedf6299ba5a516df5a00cc78fb0b6800a1e (diff) | |
download | yt-local-9d0be82e7425641a58a551fefce26385dee2f9d3.tar.lz yt-local-9d0be82e7425641a58a551fefce26385dee2f9d3.tar.xz yt-local-9d0be82e7425641a58a551fefce26385dee2f9d3.zip |
Always extract from html watch page to get base.js url
Youtube removed the url from the pbj responses. They are now
only in the html page. Replaces previous fix for the missing
base.js issue.
Diffstat (limited to 'youtube/yt_data_extract/__init__.py')
-rw-r--r-- | youtube/yt_data_extract/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/yt_data_extract/__init__.py b/youtube/yt_data_extract/__init__.py index 697e003..ad7bd03 100644 --- a/youtube/yt_data_extract/__init__.py +++ b/youtube/yt_data_extract/__init__.py @@ -10,4 +10,4 @@ from .watch_extraction import (extract_watch_info, get_caption_url, update_with_age_restricted_info, requires_decryption, extract_decryption_function, decrypt_signatures, _formats, update_format_with_type_info, extract_hls_formats, - update_with_missing_base_js) + extract_watch_info_from_html) |