From: Yen Chi Hsuan Date: Sun, 24 Jan 2016 17:03:46 +0000 (+0800) Subject: [common] Keep full codec name from m3u8 manifests X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=77f785076f9a2fcfc35de49c8e612716bbb37f6c;p=youtube-dl [common] Keep full codec name from m3u8 manifests See #8293. This is for consistency between YouTube and HLS formats. --- diff --git a/youtube_dl/extractor/common.py b/youtube_dl/extractor/common.py index 8da70ae14..2f574054d 100644 --- a/youtube_dl/extractor/common.py +++ b/youtube_dl/extractor/common.py @@ -1058,9 +1058,9 @@ class InfoExtractor(object): # TODO: looks like video codec is not always necessarily goes first va_codecs = codecs.split(',') if va_codecs[0]: - f['vcodec'] = va_codecs[0].partition('.')[0] + f['vcodec'] = va_codecs[0] if len(va_codecs) > 1 and va_codecs[1]: - f['acodec'] = va_codecs[1].partition('.')[0] + f['acodec'] = va_codecs[1] resolution = last_info.get('RESOLUTION') if resolution: width_str, height_str = resolution.split('x')