Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/knuxify/eartag
[MIRROR] Small and simple audio file tag editor; report bugs/send MRs to GNOME GitLab instead
https://github.com/knuxify/eartag
eyed3 gnome gtk mp3 mutagen pygobject tagging
Last synced: 5 days ago
JSON representation
[MIRROR] Small and simple audio file tag editor; report bugs/send MRs to GNOME GitLab instead
- Host: GitHub
- URL: https://github.com/knuxify/eartag
- Owner: knuxify
- License: mit
- Created: 2022-06-23T20:21:11.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-16T10:14:26.000Z (about 1 month ago)
- Last Synced: 2025-01-07T02:47:13.160Z (12 days ago)
- Topics: eyed3, gnome, gtk, mp3, mutagen, pygobject, tagging
- Language: Python
- Homepage: https://gitlab.gnome.org/World/eartag
- Size: 11.3 MB
- Stars: 68
- Watchers: 3
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
- awesome-gtk - Ear Tag - Tag editor designed to edit singular files `#python` `#libadwaita`. (Audio / Audio Tools)
README
# Ear Tag
Small and simple audio file tag editor
![Screenshot](data/screenshot-scaled.png)
## About
Ear Tag is a simple audio file tag editor. It is primarily geared towards making quick edits or bulk-editing tracks in albums/EPs. Unlike other tagging programs, Ear Tag does not require the user to set up a music library folder.
Ear Tag supports both desktop and mobile form factors.
## Installing
Ear Tag is available on [Flathub](https://flathub.org/apps/details/app.drey.EarTag), as well as the following software repositories:
[![Packaging status](https://repology.org/badge/vertical-allrepos/eartag.svg)](https://repology.org/project/eartag/versions)
## Dependencies
Ear Tag is written in Python, and uses GTK4 and libadwaita for the UI. The following dependencies are required:
- Python >= 3.9
- GTK4 >= 4.16.0
- libadwaita >= 1.6.0
- pygobject
- pillow (used for some picture operations)
- mutagen (used for file tagging)
- python-magic (used for MIME type detection)
- pyacoustid (used for Identify Selected Files option)## Building
We use the meson build system. The build process is as follows:
```
meson output
meson compile -C output
meson install -C output
```For development purposes, this is automated in the provided `run` script.
## Contributing
Project development happens on [GNOME's GitLab instance](https://gitlab.gnome.org/World/eartag). For starters, check out the [open issues](https://gitlab.gnome.org/World/eartag/-/issues).
Translations can be submitted through [Damned Lies (l10n.gnome.org)](https://l10n.gnome.org/module/eartag/).
If you make modifications to the code, run `black` to ensure that everything is formatted correctly.
You are expected to follow the [GNOME Code of Conduct](https://wiki.gnome.org/Foundation/CodeOfConduct) when participating in project spaces.
### Commit style
**Please follow the following commit style:**
- All commits have a prefix that contains the area of the code that has been changed:
- For the README.md file, build files (meson.build) and things like .gitignore, this is `meta:`
- For anything in the data directory, this is `data:`
- For anything related to translations or the po directory, this is `po:`
- For the actual code, this is the filename of the main file you've edited, e.g. `fileview:`
- Commit messages are in all lowercase, except for class names, filenames (if they're capitalized - like README, COPYING etc.) and project names (e.g. Musicbrainz).## TODO
While Ear Tag is ready to use as-is, there are a few nice features that may be added in the near future. You can find them in our [bug tracker](https://gitlab.gnome.org/World/eartag/-/issues/?label_name%5B%5D=feature%20request).
The project's fully open-source, so if you feel like you could try to implement one of these features, feel free to do so and send a patch to us!