1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2025-01-23 21:17:55 +01:00

fixed ext error

This commit is contained in:
Julian Galperin 2019-04-15 17:14:22 -04:00
parent 76a8117e48
commit 3448add962

View File

@ -39,14 +39,14 @@ class ChangbaIE(InfoExtractor):
isvideo = self._search_regex(r'&isvideo=([0-9])', webpage, 'isvideo') isvideo = self._search_regex(r'&isvideo=([0-9])', webpage, 'isvideo')
title = self._search_regex(r'<div[^>]+class="title"[^>]*>([^<]+)', webpage, 'title') title = self._search_regex(r'<div[^>]+class="title"[^>]*>([^<]+)', webpage, 'title')
ext = ".mp4" ext = "mp4"
if int(isvideo) == 0: if int(isvideo) == 0:
ext = ".mp3" ext = "mp3"
try: try:
url = self._search_regex(r'([a-z]+:\/\/[0-9a-z]+\.changba\.com\/[a-z]+\/[a-z]+\/[0-9]+\/[0-9]+\.mp[3-4])', webpage, 'url') url = self._search_regex(r'([a-z]+:\/\/[0-9a-z]+\.changba\.com\/[a-z]+\/[a-z]+\/[0-9]+\/[0-9]+\.mp[3-4])', webpage, 'url')
except: except:
url = "http://lzscuw.changba.com/" + str(id) + ext url = "http://lzscuw.changba.com/" + str(id) + "." + ext
return { return {
'url': url, 'url': url,