Skip to content

Darkman/mutagenwrapper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mutagenwrapper is a thin wrapper for mutagen, providing a unified interface for
various tagging formats.

Install with pip:

    $ pip install mutagenwrapper

Read the tags using the same names for different formats:

    >>> from mutagenwrapper import MediaFile
    >>> mp3 = MediaFile('Holst/The Planets/01 Mars, the Bringer of War.mp3')
    >>> mp3.artist
    u'Gustav Holst'
    >>> mp3.album
    u'The Planets'
    >>> mp4 = MediaFile('Daft Punk/Random Access Memories/13 Contact.m4a')
    >>> mp4.artist
    u'Daft Punk'
    >>> mp4.album
    u'Random Access Memories'

Currently, MP3, FLAC, MP4 files are supported.

For more information, read the documentation at https://mutagenwrapper.readthedocs.org.

About

A wrapper for mutagen that uses consistent keys among various tagging formats

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.5%
  • Makefile 1.5%