https://github.com/thefox/id3dit
ID3 tags editor for the command line written in Ruby.
https://github.com/thefox/id3dit
id3 mit-license mp3 ruby
Last synced: 12 months ago
JSON representation
ID3 tags editor for the command line written in Ruby.
- Host: GitHub
- URL: https://github.com/thefox/id3dit
- Owner: TheFox
- License: mit
- Created: 2015-11-10T22:22:12.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-03-23T19:29:01.000Z (over 6 years ago)
- Last Synced: 2025-06-26T21:05:01.979Z (12 months ago)
- Topics: id3, mit-license, mp3, ruby
- Language: Ruby
- Homepage: https://fox21.at
- Size: 58.6 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ID3dit
[ID3](https://en.wikipedia.org/wiki/ID3) tags editor for the command line written in Ruby.


## Install
The preferred method of installation is via RubyGems.org:
```bash
gem install id3dit
```
or via `Gemfile`:
```ruby
gem 'id3dit', '~>1.1'
```
## Usage
Video:
### Print Help
```bash
id3dit -h
```
### Interactive Mode
```bash
id3dit FILES...
```
### Set Tag
```bash
id3dit --artist STRING FILES...
```
### Remove All Tags
```bash
id3dit --remove-all FILES...
```
### Remove a Tag
```bash
id3dit --remove-comment FILES...
```
### Examples
- `id3dit my_music.mp3`
- `id3dit track01.mp3 track02.mp3`
- `id3dit --artist EAV track01.mp3`
- `id3dit --artist AC/DC *.mp3`
- `id3dit --year 1987 --bpm 180 track01.mp3`
- `id3dit --remove-all track01.mp3`
- `id3dit --remove-comment track01.mp3 track02.mp3`
- `id3dit --remove-disc --remove-track track01.mp3 track02.mp3`
## Project Links
- [Gem](https://rubygems.org/gems/id3dit)