http://gitunderground.i2p/archive/youtube-dl/src/branch/master/youtube_dl/extractor/peertube.py
_call_api ( host , video_id , 'description' , note = 'Downloading description JSON' , fatal = False ) if isinstance ( full_description , dict ): description = str_or_none ( full_description . get ( 'description' )) or description subtitles = self . extract_subtitles ( host , video_id ) def data ( section , field , type_ ): return try_get ( video , lambda x : x [ section ][ field ], type_ ) def account_data ( field , type_ ): return data ( 'account' , field , type_ ) def channel_data ( field , type_ ):...