Embed description and URL as MP4 tags
authorDavid Powell <bitlooter@users.noreply.github.com>
Sun, 18 Jan 2015 23:01:05 +0000 (15:01 -0800)
committerDavid Powell <bitlooter@users.noreply.github.com>
Sun, 18 Jan 2015 23:01:05 +0000 (15:01 -0800)
youtube_dl/postprocessor/ffmpeg.py

index 5b0ff32b14747d91b1c5c7223fa4efaae7aac574..faccdc43dfb4e0adf21bdff62149a861521f8fed 100644 (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')