summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2015-02-19 02:04:28 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2015-02-19 02:04:30 +0100
commit71d53ace2f5c4637f5d3390298f475bbeb2452f3 (patch)
treeb5fdcd6f5af17109311a4579e1d49465ef4c4471
parentf37e3f99f01df51af649a3544570b27facc5d92c (diff)
downloadyoutube-dl-71d53ace2f5c4637f5d3390298f475bbeb2452f3.tar.gz
youtube-dl-71d53ace2f5c4637f5d3390298f475bbeb2452f3.tar.xz
youtube-dl-71d53ace2f5c4637f5d3390298f475bbeb2452f3.zip
[sockshare] Do not require thumbnail anymore
Thumbnail is not present on the website anymore.
-rw-r--r--youtube_dl/extractor/sockshare.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/youtube_dl/extractor/sockshare.py b/youtube_dl/extractor/sockshare.py
index 7d3c0e937..b5fa6f1da 100644
--- a/youtube_dl/extractor/sockshare.py
+++ b/youtube_dl/extractor/sockshare.py
@@ -25,7 +25,6 @@ class SockshareIE(InfoExtractor):
             'id': '437BE28B89D799D7',
             'title': 'big_buck_bunny_720p_surround.avi',
             'ext': 'avi',
-            'thumbnail': 're:^http://.*\.jpg$',
         }
     }
 
@@ -45,7 +44,7 @@ class SockshareIE(InfoExtractor):
             ''', webpage, 'hash')
 
         fields = {
-            "hash": confirm_hash,
+            "hash": confirm_hash.encode('utf-8'),
             "confirm": "Continue as Free User"
         }
 
@@ -68,7 +67,7 @@ class SockshareIE(InfoExtractor):
             webpage, 'title', default=None)
         thumbnail = self._html_search_regex(
             r'<img\s+src="([^"]*)".+?name="bg"',
-            webpage, 'thumbnail')
+            webpage, 'thumbnail', default=None)
 
         formats = [{
             'format_id': 'sd',