An open API service indexing awesome lists of open source software.

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: 3 months ago
JSON representation

ID3 tags editor for the command line written in Ruby.

Awesome Lists containing this project

README

          

# ID3dit

[ID3](https://en.wikipedia.org/wiki/ID3) tags editor for the command line written in Ruby.

![](examples/id3dit_20151116_143921.png)

![](examples/id3dit_20151116_144224.png)

## 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)