mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-12-10 00:35:13 +01:00
[ard] Allow URLs without - before id
https://github.com/ytdl-org/youtube-dl/pull/29091 Authored by: olifre
This commit is contained in:
parent
3907333c5d
commit
f17c702270
2 changed files with 5 additions and 2 deletions
|
|
@ -128,7 +128,7 @@ class EmbedThumbnailPP(FFmpegPostProcessor):
|
|||
meta = MP4(filename)
|
||||
# NOTE: the 'covr' atom is a non-standard MPEG-4 atom,
|
||||
# Apple iTunes 'M4A' files include the 'moov.udta.meta.ilst' atom.
|
||||
f = {'jpeg': MP4Cover.FORMAT_JPEG, 'png':MP4Cover.FORMAT_PNG}[imghdr.what(thumbnail_filename)]
|
||||
f = {'jpeg': MP4Cover.FORMAT_JPEG, 'png': MP4Cover.FORMAT_PNG}[imghdr.what(thumbnail_filename)]
|
||||
with open(thumbnail_filename, 'rb') as thumbfile:
|
||||
thumb_data = thumbfile.read()
|
||||
meta.tags['covr'] = [MP4Cover(data=thumb_data, imageformat=f)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue