mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[yahoo:gyao] Fix extractor
This fixes 400 error for /title/ URLs.
This commit is contained in:
parent
d9473db78a
commit
8a3e7b1c95
1 changed files with 1 additions and 1 deletions
|
@ -434,7 +434,7 @@ def _entries(self, program_id):
|
||||||
page = 1
|
page = 1
|
||||||
while True:
|
while True:
|
||||||
playlist = self._download_json(
|
playlist = self._download_json(
|
||||||
f'https://gyao.yahoo.co.jp/api/programs/{program_id}/videos?page={page}', program_id,
|
f'https://gyao.yahoo.co.jp/api/programs/{program_id}/videos?page={page}&serviceId=gy', program_id,
|
||||||
note=f'Downloading JSON metadata page {page}')
|
note=f'Downloading JSON metadata page {page}')
|
||||||
if not playlist:
|
if not playlist:
|
||||||
break
|
break
|
||||||
|
|
Loading…
Reference in a new issue