Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Use mutagen for embedding thumbnails #23368
Comments
|
|
Explain, why inplace manipulation is a very bad idea? |
Checklist
Question
youtube-dl uses external binaries to embed thumbnails into MP4/MP3 files. My question is that why use FFmpeg or AtomicParsley for embedding thumbnails.
Because, there is a library named
mutagenwhich can handle ID3 tags and MP4 metadata atoms.And does in-place manipulation without generating a temporary file. And, the biggest perk is that it is made in native Python.
Then what is the point of using
AtomicParsleyfor the sole purpose of embedding thumbnails into a MP4 (MPEG-4 Part-II) file?