mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-04-03 21:57:27 +09:00
Adding mutagen module to auto-include video_title in audio metadata
This commit is contained in:
parent
913aff578f
commit
6e4d1e889e
@ -30,6 +30,7 @@ import time
|
|||||||
import urllib
|
import urllib
|
||||||
import urllib2
|
import urllib2
|
||||||
import zlib
|
import zlib
|
||||||
|
import mutagen
|
||||||
|
|
||||||
# parse_qs was moved from the cgi module to the urlparse module recently.
|
# parse_qs was moved from the cgi module to the urlparse module recently.
|
||||||
try:
|
try:
|
||||||
@ -1121,6 +1122,9 @@ class YoutubeIE(InfoExtractor):
|
|||||||
# Find the video URL in fmt_url_map or conn paramters
|
# Find the video URL in fmt_url_map or conn paramters
|
||||||
try:
|
try:
|
||||||
# Process video information
|
# Process video information
|
||||||
|
|
||||||
|
global videotitle
|
||||||
|
videotitle=video_title
|
||||||
self._downloader.process_info({
|
self._downloader.process_info({
|
||||||
'id': video_id.decode('utf-8'),
|
'id': video_id.decode('utf-8'),
|
||||||
'url': video_real_url.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)
|
self._downloader.to_screen(u'[ffmpeg] Destination: %s' % new_path)
|
||||||
status = self.run_ffmpeg(path, new_path, acodec, more_opts)
|
status = self.run_ffmpeg(path, new_path, acodec, more_opts)
|
||||||
|
|
||||||
|
audio = mutagen.mp3.EasyMP3(new_path)
|
||||||
|
audio["title"] = videotitle
|
||||||
|
audio.save()
|
||||||
|
|
||||||
if not status:
|
if not status:
|
||||||
self._downloader.to_stderr(u'WARNING: error running ffmpeg')
|
self._downloader.to_stderr(u'WARNING: error running ffmpeg')
|
||||||
return None
|
return None
|
||||||
|
Loading…
Reference in New Issue
Block a user