Embed description and URL as MP4 tags

This commit is contained in:
David Powell 2015-01-18 15:01:05 -08:00
parent 910c552052
commit bd3cbe0716
1 changed files with 4 additions and 0 deletions

View File

@ -509,6 +509,10 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
metadata['artist'] = info['uploader']
elif info.get('uploader_id') is not None:
metadata['artist'] = info['uploader_id']
if info.get('description') is not None:
metadata['description'] = info['description']
if info.get('webpage_url') is not None:
metadata['comment'] = info['webpage_url']
if not metadata:
self._downloader.to_screen('[ffmpeg] There isn\'t any metadata to add')