projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
54b31d1
)
remove print
author
Behrooz
<behrooz.abbasy@gmail.com>
Fri, 8 May 2015 02:32:08 +0000
(
04:32
+0200)
committer
Behrooz
<behrooz.abbasy@gmail.com>
Fri, 8 May 2015 02:32:08 +0000
(
04:32
+0200)
youtube_dl/extractor/ir90tv.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/ir90tv.py
b/youtube_dl/extractor/ir90tv.py
index 3a3cb4887055c39d7a3f016d5c6e8ebf298b6261..b79529b1b1ba7f31f5b1838555b09263118572e3 100644
(file)
--- a/
youtube_dl/extractor/ir90tv.py
+++ b/
youtube_dl/extractor/ir90tv.py
@@
-21,7
+21,6
@@
class Ir90TvIE(InfoExtractor):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
- # TODO more code goes here, for example ...
title = self._html_search_regex(
r'<title>\n90tv.ir :: (.*?)</title>', webpage, 'title')
@@
-29,8
+28,6
@@
class Ir90TvIE(InfoExtractor):
r'<source[^>]+src="([^"]+)"', webpage, 'video url')
thumbnail = self._search_regex(r'poster="([^"]+)"', webpage, 'thumbnail url')
- print thumbnail
-
return {
'url': video_url,