release 2015.10.23
authorPhilipp Hagemeister <phihag@phihag.de>
Fri, 23 Oct 2015 07:33:05 +0000 (09:33 +0200)
committerPhilipp Hagemeister <phihag@phihag.de>
Fri, 23 Oct 2015 07:33:05 +0000 (09:33 +0200)
CONTRIBUTING.md
docs/supportedsites.md
youtube_dl/version.py

index 32c2fd84cd156131cde88f13565e068a516ba9a1..aebded4ce21313dddd29dc639cbb7d2aa57641f3 100644 (file)
@@ -114,12 +114,13 @@ If you want to add support for a new site, you can follow this quick list (assum
             webpage = self._download_webpage(url, video_id)
 
             # TODO more code goes here, for example ...
             webpage = self._download_webpage(url, video_id)
 
             # TODO more code goes here, for example ...
-            title = self._html_search_regex(r'<h1>(.*?)</h1>', webpage, 'title')
+            title = self._html_search_regex(r'<h1>(.+?)</h1>', webpage, 'title')
 
             return {
                 'id': video_id,
                 'title': title,
                 'description': self._og_search_description(webpage),
 
             return {
                 'id': video_id,
                 'title': title,
                 'description': self._og_search_description(webpage),
+                'uploader': self._search_regex(r'<div[^>]+id="uploader"[^>]*>([^<]+)<', webpage, 'uploader', fatal=False),
                 # TODO more properties (see youtube_dl/extractor/common.py)
             }
     ```
                 # TODO more properties (see youtube_dl/extractor/common.py)
             }
     ```
index cfa665d88a0129aa1cd2d560449c6435ddb29251..03561b87de38c56a0f641a497c694961d70ef04a 100644 (file)
@@ -53,6 +53,7 @@
  - **Bandcamp:album**
  - **bbc**: BBC
  - **bbc.co.uk**: BBC iPlayer
  - **Bandcamp:album**
  - **bbc**: BBC
  - **bbc.co.uk**: BBC iPlayer
+ - **bbc.co.uk:article**: BBC articles
  - **BeatportPro**
  - **Beeg**
  - **BehindKink**
  - **BeatportPro**
  - **Beeg**
  - **BehindKink**
  - **SSA**
  - **stanfordoc**: Stanford Open ClassRoom
  - **Steam**
  - **SSA**
  - **stanfordoc**: Stanford Open ClassRoom
  - **Steam**
+ - **Stitcher**
  - **streamcloud.eu**
  - **StreamCZ**
  - **StreetVoice**
  - **streamcloud.eu**
  - **StreamCZ**
  - **StreetVoice**
index 660b0050b98aaee12e2133aab05af1113ca40b86..d5c7f338d42f355c5a6735ceb883c0fa163fed42 100644 (file)
@@ -1,3 +1,3 @@
 from __future__ import unicode_literals
 
 from __future__ import unicode_literals
 
-__version__ = '2015.10.18'
+__version__ = '2015.10.23'