http://gitunderground.i2p/archive/youtube-dl/src/commit/dcdb292fddc82ae11f4c0b647815a45c88a6b6d5/youtube_dl/extractor/soundcloud.py
_download_json ( next_url , collection_id , 'Downloading page {0} ' . format ( i ), 'Unable to download API page' ) collection = response . get ( 'collection' , []) if not collection : break collection = list ( filter ( bool , collection )) collected_results += len ( collection ) for item in collection : yield self . url_result ( item [ 'uri' ], SoundcloudIE . ie_key ()) if not...