youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit bfcb6e3917f89ad283cbcaf9cdf67925ce5e7155
parent 2c1396073ebf396f5b4b35d6171363f632e60716
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sun, 23 Mar 2014 13:36:14 +0100

Merge remote-tracking branch 'fiocfun/xtube-user-extractor'

Diffstat:
Mtest/test_playlists.py | 9+++++++++
Myoutube_dl/extractor/__init__.py | 2+-
Myoutube_dl/extractor/xtube.py | 39+++++++++++++++++++++++++++++++++++++--
3 files changed, 47 insertions(+), 3 deletions(-)

diff --git a/test/test_playlists.py b/test/test_playlists.py @@ -38,6 +38,7 @@ from youtube_dl.extractor import ( GenericIE, TEDIE, ToypicsUserIE, + XTubeUserIE, ) @@ -278,5 +279,13 @@ class TestPlaylists(unittest.TestCase): self.assertEqual(result['id'], 'Mikey') self.assertTrue(len(result['entries']) >= 17) + def test_xtube_user(self): + dl = FakeYDL() + ie = XTubeUserIE(dl) + result = ie.extract('http://www.xtube.com/community/profile.php?user=greenshowers') + self.assertIsPlaylist(result) + self.assertEqual(result['id'], 'greenshowers') + self.assertTrue(len(result['entries']) >= 155) + if __name__ == '__main__': unittest.main() diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py @@ -288,7 +288,7 @@ from .worldstarhiphop import WorldStarHipHopIE from .xhamster import XHamsterIE from .xnxx import XNXXIE from .xvideos import XVideosIE -from .xtube import XTubeIE +from .xtube import XTubeUserIE, XTubeIE from .yahoo import ( YahooIE, YahooNewsIE, diff --git a/youtube_dl/extractor/xtube.py b/youtube_dl/extractor/xtube.py @@ -75,4 +75,40 @@ class XTubeIE(InfoExtractor): 'comment_count': comment_count, 'formats': formats, 'age_limit': 18, - }- \ No newline at end of file + } + +class XTubeUserIE(InfoExtractor): + IE_DESC = 'XTube user profile' + _VALID_URL = r'https?://(?:www\.)?xtube\.com/community/profile\.php\?(.*?)user=(?P<username>[^&#]+)(?:$|[&#])' + + def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + username = mobj.group('username') + + profile_page = self._download_webpage( + url, username, note='Retrieving profile page') + + video_count = int(self._search_regex( + r'<strong>%s\'s Videos \(([0-9]+)\)</strong>'%username, profile_page, + 'video count')) + + PAGE_SIZE = 25 + urls = [] + page_count = (video_count + PAGE_SIZE + 1) // PAGE_SIZE + for n in range(1, page_count + 1): + lpage_url = 'http://www.xtube.com/user_videos.php?page=%d&u=%s' % (n, username) + lpage = self._download_webpage( + lpage_url, username, + note='Downloading page %d/%d' % (n, page_count)) + urls.extend( + re.findall(r'addthis:url="([^"]+)"', lpage)) + + return { + '_type': 'playlist', + 'id': username, + 'entries': [{ + '_type': 'url', + 'url': eurl, + 'ie_key': 'XTube', + } for eurl in urls] + }