- r'itemprop="name">([^<]+)', webpage, 'title')
- duration = parse_duration(self._html_search_meta(
- 'duration', webpage, 'duration', fatal=False))
- view_count = int_or_none(self._search_regex(
- r'itemprop="playCount"\s*>(\d+)', webpage,
- 'listen count', fatal=False))
- comment_count = int_or_none(self._search_regex(
- r'>(\d+) Comments?:', webpage,
- 'comment count', fatal=False))
+ r'class=["\']chirbit-title["\'][^>]*>([^<]+)', webpage, 'title')
+ description = self._search_regex(
+ r'<h3>Description</h3>\s*<pre[^>]*>([^<]+)</pre>',
+ webpage, 'description', default=None)
+ duration = parse_duration(self._search_regex(
+ r'class=["\']c-length["\'][^>]*>([^<]+)',
+ webpage, 'duration', fatal=False))
+ uploader = self._search_regex(
+ r'id=["\']chirbit-username["\'][^>]*>([^<]+)',
+ webpage, 'uploader', fatal=False)