Removing default metadata from .opus files
audio metadata ogg opus · 1 comment · 1,200 words · Viewed ~706 times

I'm trying to create some ridiculously tiny audio files. The sort where every single byte matters. I've encoded a small sample. But the opusenc tool automatically adds metadata - even if you don't specify any. Using the amazing Mutagen Python library I was able to completely strip out all the metadata! import mutagen mutagen.File("example.opus").delete() It edits the file immediately - so be …
Continue reading →