summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2019-12-03 21:13:44 +0100
committerRemita Amine <remitamine@gmail.com>2019-12-03 21:13:44 +0100
commit22974a378273bb43641813b0ec97d0dff1248d48 (patch)
tree386f4ea337ee70f0b4cb63947867718ec7ec3576
parent63fe44eb4dc91e2a9755a5cf23b9d39cbd36dae7 (diff)
downloadyoutube-dl-22974a378273bb43641813b0ec97d0dff1248d48.tar.gz
youtube-dl-22974a378273bb43641813b0ec97d0dff1248d48.tar.xz
youtube-dl-22974a378273bb43641813b0ec97d0dff1248d48.zip
[yahoo] correct gyao brightcove player id(closes #23303)
-rw-r--r--youtube_dl/extractor/yahoo.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/yahoo.py b/youtube_dl/extractor/yahoo.py
index b9a9e88a0..238d9cea0 100644
--- a/youtube_dl/extractor/yahoo.py
+++ b/youtube_dl/extractor/yahoo.py
@@ -383,7 +383,7 @@ class YahooGyaOPlayerIE(InfoExtractor):
             'id': video_id,
             'title': video['title'],
             'url': smuggle_url(
-                'http://players.brightcove.net/4235717419001/default_default/index.html?videoId=' + video['videoId'],
+                'http://players.brightcove.net/4235717419001/SyG5P0gjb_default/index.html?videoId=' + video['videoId'],
                 {'geo_countries': ['JP']}),
             'description': video.get('longDescription'),
             'ie_key': BrightcoveNewIE.ie_key(),