From 6e4d1e889ecdee09c73b843677d95a4ea6dc61b4 Mon Sep 17 00:00:00 2001 From: Carlos Guerrero Date: Thu, 8 Sep 2011 23:28:48 -0600 Subject: [PATCH] Adding mutagen module to auto-include video_title in audio metadata --- youtube-dl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/youtube-dl b/youtube-dl index 8577fe8c3..e5f38daec 100755 --- a/youtube-dl +++ b/youtube-dl @@ -30,6 +30,7 @@ import time import urllib import urllib2 import zlib +import mutagen # parse_qs was moved from the cgi module to the urlparse module recently. try: @@ -1121,6 +1122,9 @@ class YoutubeIE(InfoExtractor): # Find the video URL in fmt_url_map or conn paramters try: # Process video information + + global videotitle + videotitle=video_title self._downloader.process_info({ 'id': video_id.decode('utf-8'), 'url': video_real_url.decode('utf-8'), @@ -2680,6 +2684,10 @@ class FFmpegExtractAudioPP(PostProcessor): self._downloader.to_screen(u'[ffmpeg] Destination: %s' % new_path) status = self.run_ffmpeg(path, new_path, acodec, more_opts) + audio = mutagen.mp3.EasyMP3(new_path) + audio["title"] = videotitle + audio.save() + if not status: self._downloader.to_stderr(u'WARNING: error running ffmpeg') return None