Questions tagged [jaudiotagger]

28 questions
0
votes
0 answers

MP3-Stereo-File - Check differences within the channels

I have to distinguish between two types of MP3 files. Both are 'Joint-Stereo' and have two channels, but they were recorded differently. The recordings are from calls, one is filled with both sides and the other one only have the called party. I…
0
votes
0 answers

Extract audio file details from URL(mp3 file)

To get audio file(mp3) details from URL I am using JAudioTagger in my android app but I am unable to get details. My Code: val audioFile =…
Sumit Shukla
  • 4,116
  • 5
  • 38
  • 57
0
votes
1 answer

How to change song cover art of a song using jaudiotagger in android?

I have exhausted all the possible code that was listed, none of the code seems to work for me to change album art of a song. And jaudiotagger documentation is not helpful as well. Tag tag = audioFile.getTag(); Artwork artwork =…
AndroidDev
  • 1,485
  • 2
  • 18
  • 33
0
votes
0 answers

How to set up jaudiotagger on windows 10

I am rather new to programming and have never used a secondary source as I am using right now and need help. I am trying to use jaudiotagger (http://www.jthink.net/jaudiotagger/index.jsp) in a java program that I am writing but am not having any…
Spatrico
  • 129
  • 2
  • 10
0
votes
1 answer

Write custom (user defined) MP4 field with jaudiotagger

I'd like to write a custom/user defined field in a mp4 file with jaudiotagger For FLAC files, I can do this with VorbisCommentTagField. For MP3 files using ID3v24Tag I can do this with a ID3v24Frame as ID3v24Frames.FRAME_ID_USER_DEFINED_INFO Is…
GaRRaPeTa
  • 5,459
  • 4
  • 37
  • 61
0
votes
0 answers

Editing MP3 tags

Does anyone of you know a way to edit the tags of an mp3 file? I tried Mp3agic but it crash when I try to declare an MP3File object and I also tried tha jaudiotagger library, but it also crashes. I need help please. UPDATE: This is the code snippet…
0
votes
1 answer

Change album art using jaudiotagger

I'm trying to change the album art of an audio file using jaudiotagger but it is not working. There are a lot of question regarding this topic but none of them fulfilled my requirements. Other fields such as artist,audio name, album etc are updated…
Rektirino
  • 582
  • 5
  • 24
0
votes
1 answer

Jaudiotagger change tags only after reboot device

I have this code: File mp3 = new File(song.getPath()); AudioFile f = AudioFileIO.read(mp3); Tag tag = f.getTag(); tag.setField(FieldKey.TITLE,songTitle.getText().toString()); tag.setField(FieldKey.ALBUM,albumTitle.getText().toString()); …
0
votes
1 answer

JAudiotagger bug with mp3 files on API27?

I have a problem with JAudiotagger on API27(Android 7) of android, when I'm trying to set the tags for my audio file I get this error: 11-24 00:53:20.363 1518-1926/? E/ID3: skipping huge ID3 metadata of size 22934116 The relevant code snippet is…
David K.
  • 5
  • 5
0
votes
2 answers

Can't get track ID3 tags using jaudiotagger

I'm trying to read ID3 tags from a .m4a file using the jaudiotagger Library with the following code try { File file = new File(TrackPath); AudioFile f = AudioFileIO.read(file); Tag tag = f.getTag(); …
Miguel
  • 49
  • 1
  • 7
0
votes
1 answer

Need help understanding JAudioTagger, Tag Mapping

I am using the JAudioTagger Library to read the metadata from my music files. I was able to retrieve information but looking over the Tag Mapping Spec http://www.jthink.net/jaudiotagger/tagmapping.html. I am trying to retrieve the MusicBrainz…
user3393549
-1
votes
1 answer

JAudioTagger2.2.3 OOM when i use it many songs info (about 1300) background

io.reactivex.exceptions.UndeliverableException: The exception could not be delivered to the consumer because it has already canceled/disposed the flow or the exception has nowhere to go to begin with. Further reading:…
1
2