Setting audio file media metadata in Android (ID3)

前端 未结 3 1894
小蘑菇
小蘑菇 2021-01-27 03:42

I am trying to find out if there is a way to set media metadata (mainly ID3 such as artist, album, song, ...) on an anudio file in Android.

I have noticed that it is po

相关标签:
3条回答
  • 2021-01-27 04:10

    From the CLI, you can use id3ed. Just build it using Android's NDK, then you can use adb debug bridge to access the shell.

    0 讨论(0)
  • 2021-01-27 04:17

    I think you have to use a third party library

    http://jid3.blinkenlights.org/

    http://www.jthink.net/jaudiotagger/

    0 讨论(0)
  • 2021-01-27 04:30

    You could use the DataStorage to get a File-Object from the MP3-File you want to edit and then use a ID3-Tag Library like Jaudiotagger to edit the ID3-Tags.

    0 讨论(0)
提交回复
热议问题