Questions tagged [jaudiotagger]
28 questions
7
votes
2 answers
How to disable JAudioTagger Logger completely
Have been using JAudioTagger library for 2 years now , i can't figure out how to disable the Logger of it.
Also asked the owner of the project : https://bitbucket.org/ijabz/jaudiotagger/issues/257/how-to-disable-jaudio-tagger-logger
What i have…

GOXR3PLUS
- 6,877
- 9
- 44
- 93
3
votes
3 answers
Android using jaudiotagger
I try to use jaudiotagger like this
but it crashes
Main app.java :
import java.io.File;
import java.io.IOException;
import org.jaudiotagger.audio.AudioFile;
import org.jaudiotagger.audio.AudioFileIO;
import…

Alexander Fuchs
- 1,358
- 3
- 19
- 36
3
votes
5 answers
java.io.IOException: Cannot make changes to file
I am using JAudioTagger library for reading and writing tags for an audio file. I am able to read the tags but unable to write them.
I am retrieving audio file path like this :
private String getSongPath(long songId) {
String path = null;
…

akshay7692
- 601
- 1
- 8
- 19
2
votes
1 answer
JAudioTagger and Android - Change a value in an mp3?
I can read meta information like title, artist, album art and other information from audio files, but I have never been able to successfully write the meta information.
Any have any experiences with this? Are there better libraries than…

Corey Ogburn
- 24,072
- 31
- 113
- 188
1
vote
0 answers
How to use JAudiotagger to delete nonstandard tags?
The problem:
My audio collection, which contains mostly FLAC but also some MP3 and maybe a few OGG files, is sourced from 1) ripping my CD collection to disk and 2) purchasing downloads. My music collection looks like artist/album/{audio…

MonetsChemist
- 165
- 10
1
vote
0 answers
MediaRecorder produces jaudiotagger CannotReadException
I am creating a m4a file with MediaRecorder as follows:
recorder2 = new MediaRecorder();
recorder2.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder2.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4);
…

Luis A. Florit
- 2,169
- 1
- 33
- 58
1
vote
1 answer
How to use JaudioTagger to write data?
I am trying to use JaudioTagger 2.2.3 to edit tags of audio file but till now i have not achieved any success.
this is a test code to change the Artist tag of a mp3 file in Internal Storage
String path;
try
{
…

Dibyaranjan Mishra
- 55
- 9
1
vote
0 answers
Unable to set path in jaudiotagger
I'm trying to edit tags of audio files and for that I'm using JaudioTagger. But a problem exists and I can't figure it out.
I'm getting this error:
java.lang.NoSuchMethodError: No virtual method toPath()Ljava/nio/file/Path; in class Ljava/io/File;…

Rektirino
- 582
- 5
- 24
1
vote
1 answer
jaudiotagger POPULARIMETER tag
I am migrating my app from using org.blinkenlights.jid3 to jaudiotagger. I have successfully implemented most of the mp3 tags but am struggling with the POPM tag. I am trying to read the POPM by gettting the frame. It appears to be the correct…

Theo
- 2,012
- 1
- 16
- 29
1
vote
1 answer
Extracting audio features like MFCC on android
I want to extract MFCC from audio files on android. I have searched everywhere but I couldn't find any working code for this. Could someone share any working code for the same?

coderahul1994
- 37
- 5
1
vote
1 answer
Jaudiotagger getAll(FieldKey.COMMENT) yields an array of 0s and 1s
I am using JAudioTagger in my Java application to retrieve metadata from an mp3 file. I am able to retrive all metadata within the ID3 without a problem except for the "comments". Comments are something that I added from iTunes by selecting the…

noobcoder
- 11,983
- 10
- 39
- 62
1
vote
0 answers
How to change album art using Jaudiotagger and MediaScanner in android?
I am using Jaudiotagger 2.2.5 for an android music tagging app. I am able to change metadata like album name, artist name, genre etc. But no matter what I try I can't get the album art part working. I have exhausted all suggestions that I could find…

Aritra Bhattacharyya
- 11
- 2
1
vote
1 answer
Android : JAudioTagger doesn't change the tags
So I am trying to edit the tags of music files in my app. This is the code
TagOptionSingleton.getInstance().setAndroid(true);
AudioFile f = AudioFileIO.read(sel);
Tag tag = f.getTag();
tag.setField(FieldKey.TITLE, "ABC");
f.commit();
I have tried…

varunkr
- 5,364
- 11
- 50
- 99
0
votes
1 answer
jaudiotagger get mp3 frequency
Anyone knows how to get mp3 Frequency (in Hz) using jaudiotagger library for Java? jaudiotagger site

pleerock
- 18,322
- 16
- 103
- 128
0
votes
1 answer
AudioFileIO leaves inputstream opened after giving log warn "No space to find another frame"
I am attempting to read a files audio length in Java using the following code:
return AudioFileIO.read(new File(audio)).getAudioHeader().getTrackLength() * 1000;
This works and gives me (roughly) the length of the audio file, but leaves an…

Finn Andre Worm
- 21
- 4