-
Notifications
You must be signed in to change notification settings - Fork 10.2k
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
[Tver] Can`t download Fuji TV video #28767
Comments
With a modified youtube-dl, which never redirects to FujiTVFODPlus7IE, that worked. It seems Fuji has stopped using it.
diff --git a/youtube_dl/extractor/tver.py b/youtube_dl/extractor/tver.py
index a54f49319..cf3d2731d 100644
--- a/youtube_dl/extractor/tver.py
+++ b/youtube_dl/extractor/tver.py
@@ -51,7 +51,7 @@ class TVerIE(InfoExtractor):
'episode_number': int_or_none(try_get(main, lambda x: x['ext']['episode_number'])),
}
- if service == 'cx':
+ if service == 'cx' and False:
title = main['title']
subtitle = strip_or_none(main.get('subtitle'))
if subtitle: P.S. if you know any other TVer video from |
Who can fix the issue and merge into master? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Checklist
Verbose log
Description
TVer is Japanese video site. Some TV stations are on this site posting a video.
I can no longer download videos from a TV station called Fuji TV. I think the cause is a specification change. it become the same as any other TV station. (https://tver.jp/info/notice/3137.html)
Can you please support a new specification.
Thanks.
The text was updated successfully, but these errors were encountered: