2021-04-14 16:47:44 -04:00
|
|
|
# flac2mp3.pl
|
|
|
|
Perl script to transcode flac into mp3, while keeping the tags. Because hundreds of these scripts aren't enough apparently.
|
|
|
|
|
|
|
|
Dependencies: `flac` `metaflac` `lame`
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
```bash
|
|
|
|
flac2mp3.pl ~/flacs ~/mp3
|
|
|
|
```
|
|
|
|
|
2021-08-01 11:46:19 -04:00
|
|
|
Some tags can be overridden with options.
|
2021-04-14 16:47:44 -04:00
|
|
|
```bash
|
2021-08-01 11:46:19 -04:00
|
|
|
flac2mp3.pl --genre 145 --comment "yes" ~/flacs ~/mp3
|
2021-04-14 16:47:44 -04:00
|
|
|
```
|
|
|
|
This would add the genre as 'Anime'. Run `lame --genre-list` for the whole list. Can be specified multiple ones, with comma separation (i think).
|