[utils] Remove url_infer_protocol

This commit is contained in:
Yen Chi Hsuan 2015-04-08 21:39:34 +08:00
parent a662163fd5
commit 0a1603634b
4 changed files with 4 additions and 23 deletions

View file

@ -3,10 +3,8 @@ from __future__ import unicode_literals
import json
from .common import InfoExtractor
from ..utils import (
url_infer_protocol,
js_to_json
)
from ..utils import js_to_json
from ..compat import compat_urlparse
class UDNEmbedIE(InfoExtractor):
@ -45,7 +43,7 @@ class UDNEmbedIE(InfoExtractor):
formats = [{
'url': self._download_webpage(
url_infer_protocol(url, api_url), video_id,
compat_urlparse.urljoin(url, api_url), video_id,
'retrieve url for %s video' % video_type),
'format_id': video_type,
'preference': 0 if video_type == 'mp4' else -1,