youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit b59c17e543206220c1809ab0fe6131280dd02b1f
parent 61ca9a80b34b14fa0e5e19e35ee76e0086d49edf
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Fri, 23 Jan 2015 01:22:19 +0100

Merge pull request #4745 from BitLooter/master

Embed description and URL as MP4 tags
Diffstat:
Myoutube_dl/postprocessor/ffmpeg.py | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py @@ -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')