http://gitunderground.i2p/archive/youtube-dl/commit/bdda6b81df61f52eed2502c8ae624d297d918488
_download_webpage ( ' http://vbox7.com/play: %s ' % video_id , video_id , fatal = None ) video = response [ ' options ' ] resolutions = ( 1080 , 720 , 480 , 240 , 144 ) highest_res = traverse_obj ( video , ( ' highestRes ' , T ( int ) ) ) or resolutions [ 0 ] for res in traverse_obj ( video , ( ' resolutions ' , lambda _ , r : int ( r ) > 0 ) ) or resolutions : if res > highest_res : continue formats . append ( { ' url ' : video_url ....