wmelvin / mp3pic

Add a cover-art image to a mp3 file.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mp3pic

The mp3pic.py command-line tool adds a cover picture to a mp3 file. It was initially built to add cover art to mp3 files that already have ID3 tags with other metadata (though it will add the ID3 tag if one does not exist), so it does not currently provide for adding or updating any other metadata.

The mutagen library is used to modify the ID3 tag in the mp3 file.

The Pillow library is used to modify the image, if needed, prior to adding it to the mp3 file.

Usage

usage: mp3pic [-h] [-o OUTPUT_FILE] [-d] [-k] mp3_file image_file

Add a picture tag to a mp3 file.

positional arguments:
  mp3_file              Name of the source mp3 file to modify. The modified
                        version will be given a new name.
  image_file            Name of the image file to use as the cover picture.
                        File type must be .jpeg, .jpg, or .png.

optional arguments:
  -h, --help            show this help message and exit
  -o OUTPUT_FILE, --output-file OUTPUT_FILE
                        Optional. Name of output file. Default output file
                        name is the source file name with a date_time stamp
                        added on the right. If the specified output file
                        already exists it will not be replaced.
  -d, --delete-tags     Optional. Delete existing ID3 tags before adding the
                        picture tag.
  -k, --keep-image      Optional. Keep the temporary image (jpg) file used to
                        add the picture tag.

Reference

ID3

Wikipedia: ID3

Mutagen

Mutagen docs for the Main Module

MP3 class

ID3 class

mutagen.id3.APIC - Frame Base Classes for Picture

mutagen.id3.Encoding

mutagen.id3.PictureType

User Guide: Dealing with Frame Uniqueness of ID3 Frames

Pillow

Pillow (PIL Fork) documentation

Image.resize

Image.crop

About

Add a cover-art image to a mp3 file.

License:MIT License


Languages

Language:Python 96.7%Language:Just 3.3%