Browse Source

Add new field "extractor" to the info dictionary

rtmp_test
Philipp Hagemeister 12 years ago
parent
commit
5a5523698d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/FileDownloader.py

+ 1
- 1
youtube_dl/FileDownloader.py View File

@ -474,8 +474,8 @@ class FileDownloader(object):
# Extract information from URL and process it
videos = ie.extract(url)
for video in videos or []:
video['extractor'] = ie.IE_NAME
try:
video['provider'] = ie.IE_NAME
self.increment_downloads()
self.process_info(video)
except UnavailableVideoError:


Loading…
Cancel
Save