X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fvlive.py;h=a672ea9c5a5c05316f3e03808ac66a60d48e0f18;hb=d41ee7b7745d59d398f37b435146d4036e4a7448;hp=7f9e99ec2c8dd4fa32a0da8310fcd55300b44426;hpb=e0e9bbb0e9dd92f526b04584c47e6509a73fed04;p=youtube-dl diff --git a/youtube_dl/extractor/vlive.py b/youtube_dl/extractor/vlive.py index 7f9e99ec2..a672ea9c5 100644 --- a/youtube_dl/extractor/vlive.py +++ b/youtube_dl/extractor/vlive.py @@ -43,7 +43,7 @@ class VLiveIE(InfoExtractor): status_params = self._download_json( 'http://www.vlive.tv/video/status?videoSeq=%s' % video_id, video_id, 'Downloading JSON status', - headers={'Referer': url}) + headers={'Referer': url.encode('utf-8')}) status = status_params.get('status') air_start = status_params.get('onAirStartAt', '') is_live = status_params.get('isLive')