mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-07-13 08:48:29 +00:00
asked changes
This commit is contained in:
parent
83d4013ccb
commit
6729562666
@ -96,8 +96,6 @@ def run(self, info):
|
|||||||
try:
|
try:
|
||||||
self._report_run('mutagen', filename)
|
self._report_run('mutagen', filename)
|
||||||
audio = mutagen.id3.ID3(filename)
|
audio = mutagen.id3.ID3(filename)
|
||||||
if 'APIC' in audio:
|
|
||||||
del audio['APIC']
|
|
||||||
with open(thumbnail_filename, 'rb') as thumbfile:
|
with open(thumbnail_filename, 'rb') as thumbfile:
|
||||||
audio['APIC'] = mutagen.id3.APIC(
|
audio['APIC'] = mutagen.id3.APIC(
|
||||||
encoding=mutagen.id3.Encoding.UTF8, mime='image/%s' % thumbnail_ext, type=3,
|
encoding=mutagen.id3.Encoding.UTF8, mime='image/%s' % thumbnail_ext, type=3,
|
||||||
|
@ -674,16 +674,14 @@ def embed_lyrics(self, audio_file, sub_dict):
|
|||||||
if len(sub_dict) > 1:
|
if len(sub_dict) > 1:
|
||||||
self.report_warning('More than one subtitle file found. Your media player will likely be unable to display all of them.')
|
self.report_warning('More than one subtitle file found. Your media player will likely be unable to display all of them.')
|
||||||
|
|
||||||
if sub_dict[list(sub_dict.keys())[0]]['ext'] != 'lrc':
|
if not all(sub['ext'] == 'lrc' for sub in sub_dict.values()):
|
||||||
raise PostProcessingError('LRC subtitles required. Use "--convert-subs lrc" to convert')
|
raise PostProcessingError('LRC subtitles required. Use "--convert-subs lrc" to convert')
|
||||||
|
|
||||||
lyrics_list = []
|
lyrics_list = [sub['data'] for sub in sub_dict.values()]
|
||||||
for lyrics in sub_dict.keys():
|
|
||||||
lyrics_list.append(sub_dict[lyrics]['data'])
|
|
||||||
if audio_file.endswith('.mp3'):
|
if audio_file.endswith('.mp3'):
|
||||||
for lyrics in lyrics_list:
|
|
||||||
audio = mutagen.id3.ID3(audio_file)
|
audio = mutagen.id3.ID3(audio_file)
|
||||||
audio.add(mutagen.id3.USLT(encoding=3, lang='und', desc='', text=lyrics))
|
for lyrics in lyrics_list:
|
||||||
|
audio.add(mutagen.id3.USLT(encoding=mutagen.id3.Encoding.UTF8, lang='und', text=lyrics))
|
||||||
audio.save()
|
audio.save()
|
||||||
else:
|
else:
|
||||||
metadata = mutagen.File(audio_file)
|
metadata = mutagen.File(audio_file)
|
||||||
|
Loading…
Reference in New Issue
Block a user