diff options
author | M.Yasoob Khalid <yasoob.khld@gmail.com> | 2013-06-23 18:02:55 +0500 |
---|---|---|
committer | M.Yasoob Khalid <yasoob.khld@gmail.com> | 2013-06-23 18:02:55 +0500 |
commit | 01ba4b80a732308e8da66ba89bac9273181db1ad (patch) | |
tree | 34a6a1336f4d27decc8e178963c8ed8c02055031 | |
parent | de66764e4e3c0fe32bb6b7b8830da5ab6481003a (diff) |
added StatigrIE
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py index 6788bf402..4aec8c687 100755 --- a/youtube_dl/InfoExtractors.py +++ b/youtube_dl/InfoExtractors.py @@ -4565,7 +4565,6 @@ class StatigrIE(InfoExtractor): thumbnail_url = re.search(r'<meta property="og:image" content="(.+?)" />',webpage).group(1) title = (re.search(r'<title>(.+?)</title>',webpage).group(1)).strip("| Statigram") uploader = re.search(r'@(.+) \(Videos\)',title).group(1) - print uploader ext = "mp4" return [{ 'id': video_id, |