1
0
Fork 0

Update to ytdl-commit-a726009

[blinkx] Remove extractor
a726009987
This commit is contained in:
pukkandan 2021-05-06 21:31:20 +05:30
commit 41d1cca328
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
17 changed files with 252 additions and 108 deletions

View file

@ -1056,11 +1056,20 @@ class YoutubeDL(object):
def extract_info(self, url, download=True, ie_key=None, extra_info={},
process=True, force_generic_extractor=False):
'''
Returns a list with a dictionary for each video we find.
If 'download', also downloads the videos.
extra_info is a dict containing the extra values to add to each result
'''
"""
Return a list with a dictionary for each video extracted.
Arguments:
url -- URL to extract
Keyword arguments:
download -- whether to download videos during extraction
ie_key -- extractor key hint
extra_info -- dictionary containing the extra values to add to each result
process -- whether to resolve all unresolved references (URLs, playlist items),
must be True for download to work.
force_generic_extractor -- force using the generic extractor
"""
if not ie_key and force_generic_extractor:
ie_key = 'Generic'