http://gitunderground.i2p/archive/youtube-dl/src/branch/master/youtube_dl/extractor/commonprotocols.py
_generic_title ( url ) return { 'id' : video_id , 'title' : title , 'formats' : [{ 'url' : url , 'ext' : 'flv' , 'format_id' : compat_urlparse . urlparse ( url ) . scheme , }], } class MmsIE ( InfoExtractor ): IE_DESC = False # Do not list _VALID_URL = r '(?i)mms://.+' _TEST = { # Direct MMS link 'url' : 'mms://kentro.kaist.ac.kr/200907/MilesReid(0709).wmv' , 'info_dict' : { 'id' : 'MilesReid(0709)' , 'ext' : 'wmv' , 'title' : 'MilesReid(0709)' , },...