Skip to content

Commit

Permalink
[xminus] Capture description (#4300)
Browse files Browse the repository at this point in the history
  • Loading branch information
phihag committed Dec 4, 2014
1 parent e8df5ce commit 81028ff
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions youtube_dl/extractor/xminus.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# coding: utf-8
from __future__ import unicode_literals

import re

from .common import InfoExtractor
from ..compat import (
compat_chr,
Expand All @@ -25,6 +27,7 @@ class XMinusIE(InfoExtractor):
'tbr': 320,
'filesize_approx': 5900000,
'view_count': int,
'description': 'md5:03238c5b663810bc79cf42ef3c03e371',
}
}

Expand All @@ -48,6 +51,11 @@ def _real_extract(self, url):
view_count = int_or_none(self._html_search_regex(
r'<div class="quality.*?► ([0-9]+)',
webpage, 'view count', fatal=False))
description = self._html_search_regex(
r'(?s)<div id="song_texts">(.*?)</div><br',
webpage, 'song lyrics', fatal=False)
if description:
description = re.sub(' *\r *', '\n', description)

enc_token = self._html_search_regex(
r'minus_track\.tkn="(.+?)"', webpage, 'enc_token')
Expand All @@ -64,4 +72,5 @@ def _real_extract(self, url):
'filesize_approx': filesize_approx,
'tbr': tbr,
'view_count': view_count,
'description': description,
}

0 comments on commit 81028ff

Please sign in to comment.