mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2025-02-11 20:50:10 +00:00
Set to_generic -> True to suppress fallback msg
This commit is contained in:
parent
9a2ed02b65
commit
2cc84715bc
@ -1,5 +1,6 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
from ..utils import smuggle_url
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
@ -82,4 +83,6 @@ class IQM2IE(InfoExtractor):
|
|||||||
# Generic extractor matches this under the "Broaden the
|
# Generic extractor matches this under the "Broaden the
|
||||||
# findall a little bit: JWPlayer JS loader" (line 2372 as of 6
|
# findall a little bit: JWPlayer JS loader" (line 2372 as of 6
|
||||||
# Oct 2016, dcdb292fddc82ae11f4c0b647815a45c88a6b6d5).
|
# Oct 2016, dcdb292fddc82ae11f4c0b647815a45c88a6b6d5).
|
||||||
return self.url_result(inner_url, 'Generic')
|
|
||||||
|
return self.url_result(smuggle_url(inner_url, {'to_generic': True}),
|
||||||
|
'Generic')
|
||||||
|
Loading…
Reference in New Issue
Block a user