ID3 tag is a type of metadata container used to store information about an MP3 file within the audio file itself.
Questions tagged [id3-tag]
91 questions
0
votes
2 answers
mp3 id3tag encoding in php
First of all i'm a korean and when i pull out datas from mp3 file. korean characters come out as weird characters.. what is it called in english? breaking chracter phenomenon?
anyway There are music files which are mp3 types and I made it to pull…

LeeJunHo
- 11
0
votes
0 answers
PHP Id3tag changing of the uploaded file
there's lib getid3 that can write/read id3 tags. There's my upload script:
// Validate the files to be uploaded
if(empty($error)) {
$tpath = __DIR__ .'/../uploads/tracks/';
$mpath = __DIR__ .'/../uploads/media/';
…
0
votes
3 answers
How to get ID3 tags for media files on iPhone
I need some help.
The situation looks like this:
I can get list of media files (mp3s, m4as, m4vs an so on) with link to the file (looks like:
http://10.0.1.1/Media/Files%20Folder/File%20Itself.m4v
So I get an array consisting of links to these…

Yuri
- 13
- 3
0
votes
1 answer
Retrieving several .mp3's info and storing them into an xml Document
I did this code to retrieve the info from an .mp3 file using TagLib and display it into an XML document with LINQ to XML, here's the right code:
static class Program
{
[STAThread]
static void Main()
{
TagLib.File file =…
0
votes
3 answers
Get cover art from a music file using JAudioTagger in Java
I'm using JAudioTagger to fetch the metadata from music files, getting the title, year etc is working fine but I am having a problem with getting the cover art. I have not been able to find any examples searching online, any help would be…

Dominic E
- 23
- 1
- 4
0
votes
1 answer
How to get ID3Tags information of a audio file in a specific URL?
I am trying to get a ID3Tag information from a audio file in a specific URL, after went throgh this topic i found a following code, it helps to retrive a ID3Tag information from a mp3 file. But my question is how i need to apply the below code that…

Kishore Indraganti
- 1,296
- 3
- 17
- 34
0
votes
1 answer
Convert m4a to aac and keep metadata on Windows 7
I want to convert an m4a file to aac*. I can do this using:
ffmpeg -i song.m4a -acodec copy song.aac
But on Windows 7 the metadata is not compatible. It seems the -id3v2_version 3 flag should be used so that Windows compatible ID3 tags version 2.3…

betamax
- 116
- 1
- 9
0
votes
1 answer
libid3tag usage in Objective-C
I'm trying to create LAME mp3 encoder GUI with Objective-C. I've learned many thing and copied many codes from iTunes-LAME.app. This time, I copied and modified id3tag writing function from iTunes-LAME.app. But in the copied and modified…

xanadu6291
- 931
- 10
- 20
0
votes
1 answer
Python 3.3 ID3 reader
I've tried many different ways to read ID3 tags but none of them seem to work due to the fact that they all to only work on python 2. Does anyone know a simple ID3 tag reader and writer, preferibly one that could do both, it would be a great help.…

Aidan Howie
- 95
- 1
- 10
0
votes
1 answer
How do I use MixMeister BPM analyzer and keep the tags on my non-mp3 files?
So I was hoping to find songs listed under the same BPM in my library. That's when I came across this BPM analyzer, so I decided to analyze all my songs, problem is about half of my songs are ".M4A" (AAC codec) and the program only accepts ".MP3"…

Ethan
- 161
- 2
- 19
0
votes
1 answer
Gibberish result reading unicode tags using mp3agic in Java
I am trying to read tags of Russian songs in Java using mp3agic:
Mp3File song;
try {
song = new Mp3File(newURI);
if (song.hasId3v2Tag()) {
ID3v2 id3v2tag = song.getId3v2Tag();
title = id3v2tag.getTitle();
artist =…

Daniil Shevelev
- 11,739
- 12
- 50
- 73
0
votes
1 answer
Correct encoding for ID3 Tags in iOS
I'm trying to get ID3 tags from a bunch of mp3 files in my project.
AudioFileGetProperty(audioFile, kAudioFilePropertyInfoDictionary, &size, &metadataDictionary);
If the tag doesn't contain cyrillic symbols, the output looks OK on the device.…

NikGreen
- 700
- 9
- 28
0
votes
1 answer
How to get frame size in ID3v2.2 MP3 tags?
I've got it sorted out for the ID3v2.3 tags, since there are 4 bytes, but the frame's header tag here is only a total of 3 bytes, not 4. That seems to mean that I can't use struct.unpack to get an int out of it.
For example, the tag I'm working…

TankorSmash
- 12,186
- 6
- 68
- 106
0
votes
1 answer
Remove id3v2 tag c++
Does anyone know how to, given an mp3 file, remove the id3v2 header from it in c++? I'm working on a windows machine and I can't find any instructions on how to get id3lib working on windows. Otherwise, I'd just use that.

Kurtis Nusbaum
- 30,445
- 13
- 78
- 102
-1
votes
1 answer
TagInspector on Windows - looking for an equivalent that shows character-encoding
So I came across this article, which describes a tool called 'TagInspector'. Here's the containing article: https://lachlanwetherall.com/2014/09/holden-mylink-and-the-cover-art-conundrum/
The link to TagInspector shown in the article, goes to a…

David
- 2,253
- 5
- 23
- 29