1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-22 16:44:32 +01:00

[news18] Add new extractor

This commit is contained in:
Ashwin Dhakaita 2018-11-04 10:13:07 +05:30
parent 3819e62a61
commit 8b85d2d019

View File

@ -1,9 +1,8 @@
from __future__ import unicode_literals
import re
from .common import InfoExtractor
class News18IE(InfoExtractor):
_VALID_URL = r'''https?:\/\/www\.news18\.com[a-zA-Z0-9_\/-]+-(?P<id>\d+)\.html'''
_TEST = {
@ -17,7 +16,6 @@ class News18IE(InfoExtractor):
}
def _real_extract(self, url):
IE_NAME = 'News18'
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
video_url = self._search_regex(r'(?P<url>https?:\/\/vodpd\.news18\.com[\/\w_-]+\.mp4)', webpage, 'video URL', default='')
@ -29,4 +27,3 @@ class News18IE(InfoExtractor):
'title': title,
'ext': 'mp4'
}