1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-21 04:29:34 +00:00

[infoq] Avoid crash if the page has no mp3Form

* proposed fix for issue #31131, aligns with yt-dlp

Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
gudata 2022-08-19 23:00:21 +03:00 committed by GitHub
parent fd3f3bebd0
commit a8d5316aaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,6 +1,9 @@
# coding: utf-8
from __future__ import unicode_literals
from ..utils import (
ExtractorError,
)
from ..compat import (
compat_b64decode,
@ -90,7 +93,11 @@ class InfoQIE(BokeCCBaseIE):
}]
def _extract_http_audio(self, webpage, video_id):
try:
fields = self._form_hidden_inputs('mp3Form', webpage)
except ExtractorError:
fields = {}
http_audio_url = fields.get('filename')
if not http_audio_url:
return []