diff options
author | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-11-27 18:08:07 +0100 |
---|---|---|
committer | Filippo Valsorda <filippo.valsorda@gmail.com> | 2012-11-27 18:08:07 +0100 |
commit | 7e4674830ed0d85764792b1cd5605813643932b6 (patch) | |
tree | 17755ce7300dd7f3b4aad0551479df7f2bb9b3bc /youtube_dl | |
parent | 9ce5d9ee7513c433cbbb8949214ada078ffddea6 (diff) |
document info_dict['subtitles'] and info_dict['urlhandle']
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/InfoExtractors.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 3adf56a0b..4c664ce6e 100644 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -51,6 +51,9 @@ class InfoExtractor(object): thumbnail: Full URL to a video thumbnail image. description: One-line video description. player_url: SWF Player URL (used for rtmpdump). + subtitles: The .srt file contents. + urlhandle: [internal] The urlHandle to be used to download the file, + like returned by urllib2.urlopen The fields should all be Unicode strings. |