Browse Source

[ffmpeg] --add-metadata: Set comment and purl fields (Fixes #4847)

Philipp Hagemeister 10 years ago
parent
commit
2cf0ecac7b
1 changed files with 2 additions and 1 deletions
  1. 2 1
      youtube_dl/postprocessor/ffmpeg.py

+ 2 - 1
youtube_dl/postprocessor/ffmpeg.py

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