Is there any way to set metadata like artist
, title
, genre
etc. for an AAC file recorded with AVAudioRecorder
?
For MP3 files there is the ID3 tag. However, I haven't been able to find an equivalent for AAC files. I have searched through the Apple Developer Docs without success but there must be some way to set those attributes because when playing an AAC file downloaded from iTunes in an audio player like VLC or foobar2000 it does recognize the metadata and even the album art.
(For recording the AAC files I use the code from Apple's Multimedia Programming Guide.)
AAC
packet stream orAAC
inm4a
? – Rhythmic FistmanAAC
supports metadata, you'll probably have to switch to m4a. – Rhythmic FistmankAudioFormatMPEG4AAC
and set the file extension to.m4a
it should work. – Rhythmic Fistman