answered
2014-01-17 17:29:15 +0200
I have metadata support for AIFF on my Jolla. I don't have a beatport account, so I converted a video file to AIFF format and added tags with the id3v2 tool:
$ ffmpeg -i Downloads/Nostromo_-_Always_Hardcore.avi -acodec pcm_s24be Downloads/audio.aiff
$ id3v2 -a "Scooter" -A "youtube" -t "One (Always Hardcore)" -T "01" Downloads/audio.aiff
in my media app the file shows up with:
- Artist: Scooter
- Album: youtube
- Title: One (Always Hardcore)
- Tracknumber: 1
AIFF support on Linux isn't that well, e.g. mediainfo or vlc don't show any metadata in the file:
$ mediainfo Downloads/audio.aiff
General
Complete name : Downloads/audio.aiff
File size : 54.4 MiB
id3v2 however does:
$ id3v2 -l Downloads/audio.aiff
id3v1 tag info for Downloads/audio.aiff:
Title : One (Always Hardcore) Artist: Scooter
Album : youtube Year: , Genre: Unknown (255)
Comment: Track: 1
id3v2 tag info for Downloads/audio.aiff:
TPE1 (Lead performer(s)/Soloist(s)): Scooter
TALB (Album/Movie/Show title): youtube
TIT2 (Title/songname/content description): One (Always Hardcore)
TRCK (Track number/Position in set): 01
So could you check wether there are any ID3(v2) tags in your files? On Linux and Mac I'd suppose to install the id3v2 command line tool.
By the way - does Jolla media application change the underscore marks in name to spaces automatically? I just realised this difference between the file name and name presented in application itself.
Hirager ( 2014-02-01 16:51:56 +0200 )edit