3
I currently use the following command to pipe a number of .ogg
files through ffmpeg
for x in *.ogg; do ffmpeg -i "$x" -ab 320k -write_id3v2 1 "`basename "$x" .ogg`.mp3"; done
It works and prints out the following info
Output #0, mp3, to '10 Ft. Ganja Plant_Bass Chalice_10_Bass Chalice.mp3':
Metadata:
TSSE : Lavf57.83.100
Stream #0:0: Audio: mp3 (libmp3lame), 44100 Hz, stereo, fltp, 320 kb/s
Metadata:
TITLE : Bass Chalice
ARTIST : 10 Ft. Ganja Plant
GENRE : Reggae
DATE : 2005
ALBUM : Bass Chalice
track : 10
encoder : Lavc57.107.100 libmp3lame
But when I load the files into iTunes, the id3 tags are not there.
I tried using it with and without the -write_id3v2 1
option but it still does not work.
What am I doing wrong?
1Are they visible in other players/taggers? – Gyan – 2018-04-04T12:18:39.317