-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Error getting mssing player: This video is unavailable #221
Comments
This commit #219 actually seems to fix the issue for me. |
Got the same issue, Still don't know how does the #219 helps? |
Yeah, this is still persistent and now it just full on doesn't work. You can spam refresh but it will still come up with the same error message. |
The #219 pull request introduces The simplest fix is by removing diff --git a/youtube/watch.py b/youtube/watch.py
index 8cddf1d..b08d29a 100644
--- a/youtube/watch.py
+++ b/youtube/watch.py
@@ -337,7 +337,6 @@ def _add_to_error(info, key, additional_message):
def fetch_player_response(client, video_id):
return util.call_youtube_api(client, 'player', {
'videoId': video_id,
- 'params': 'CgIQBg',
})
def fetch_watch_page_info(video_id, playlist_id, index):
@@ -367,7 +366,7 @@ def extract_info(video_id, use_invidious, playlist_id=None, index=None):
gevent.spawn(fetch_watch_page_info, video_id, playlist_id, index),
- gevent.spawn(fetch_player_response, 'android-test-suite', video_id)
+ gevent.spawn(fetch_player_response, 'ios', video_id)
)
gevent.joinall(tasks)
util.check_gevent_exceptions(*tasks) |
Have the same issue shown in OP's screenshot, does not matter how many times I refresh. As a solution, I've tried both #219 separately and the patch that alive4ever posted above on the main branch. Both work for now. |
Btw, I think the current
|
In Youtube's war against all other ways of interacting with its service, youtube-local is now in the cross fire and this error appears in every video I try to watch, doesn't matter if you're using a VPN, or TOR, or neither.
If you reload enough times it will eventually get through, but this is still super annoying.
The text was updated successfully, but these errors were encountered: