浏览代码

Document formats (for #980)

Philipp Hagemeister 12 年之前
父节点
当前提交
deefc05b88
共有 1 个文件被更改,包括 13 次插入2 次删除
  1. 13 2
      youtube_dl/extractor/common.py

+ 13 - 2
youtube_dl/extractor/common.py

@@ -52,8 +52,19 @@ class InfoExtractor(object):
     view_count:     How many users have watched the video on the platform.
     view_count:     How many users have watched the video on the platform.
     urlhandle:      [internal] The urlHandle to be used to download the file,
     urlhandle:      [internal] The urlHandle to be used to download the file,
                     like returned by urllib.request.urlopen
                     like returned by urllib.request.urlopen
-
-    The fields should all be Unicode strings.
+    formats:        A list of dictionaries for each format available, it must
+                    be ordered from worst to best quality. Potential fields:
+                    * url       Mandatory. The URL of the video file
+                    * ext       Will be calculated from url if missing
+                    * format    A human-readable description of the format
+                                ("mp4 container with h264/opus").
+                                Calculated from width and height if missing.
+                    * format_id A short description of the format
+                                ("mp4_h264_opus" or "19")
+                    * width     Width of the video, if known
+                    * height    Height of the video, if known
+
+    Unless mentioned otherwise, the fields should be Unicode strings.
 
 
     Subclasses of this one should re-define the _real_initialize() and
     Subclasses of this one should re-define the _real_initialize() and
     _real_extract() methods and define a _VALID_URL regexp.
     _real_extract() methods and define a _VALID_URL regexp.