Tagged Questions

ID3 is a metadata container (often used with MP3s) which can be used to store details about the enclosing file.

learn more… | top users | synonyms

51
votes
5answers
30k views

View/edit ID3 data for MP3 files

What's a quick and easy way to view and edit ID3 tags (artist, album, etc.) using C#?
13
votes
2answers
59 views

unable to install id3 for php - what is the good alternative?

i have a website (personal site) where i upload my music. i am a dj in clubs and for my mix i use my site to manage my music i create. so ultimately i want to create mix online so now i have a share ...
8
votes
1answer
705 views

What's this “Album artist” tag iTunes uses? Any way to set it using java?

iTunes uses an ID3 tag called "Album Artist", and for one album to be actually grouped as an album in iTunes, both the Album Name and Album Artist must be the same. As far as I'm concerned, Album ...
8
votes
2answers
745 views

C# ID3 library that supports custom fields

Currently i'm using TagLib Sharp as suggested in one of the posts @stackoverflow for reading id3-Tag out of mp3, flac, ogg and similar multimedia files .. now i just realized, that id3v2 (maybe even ...
8
votes
4answers
4k views

How to read and write ID3 tags to an MP3 in C#?

Is there a library for reading and writing ID3 tags to an MP3 in C#? I've actually seen a couple when searching, anybody using any that can be recommended?
8
votes
6answers
4k views

How do you embed album art into an MP3 using Python?

I've been using mutagen for reading and writing MP3 tags, but I want to be able to embed album art directly into the file.
7
votes
7answers
3k views

Detect duplicate MP3 files with different bitrates and/or different ID3 tags?

How could I detect (preferably with Python) duplicate MP3 files that can be encoded with different bitrates (but they are the same song) and ID3 tags that can be incorrect? I know I can do an MD5 ...
7
votes
4answers
6k views

How Does One Read Bytes from File in Python

Similar to this question, I am trying to read in an ID3v2 tag header and am having trouble figuring out how to get individual bytes in python. I first read all ten bytes into a string. I then want ...
7
votes
6answers
10k views

I need an ID3 tag reader library for Java - preferably a fast one

I'd like to know a good ID3 tag reader library for Java. Would be good if it was easy to use or had very good documentation, but my main criteria is speed - I want to be able to read ID3 tags from ...
6
votes
4answers
2k views

Ripping a CD to mp3 in C# - third party component or api out there?

We're working on a project that requires the ripping of audio tracks from CDs to MP3s (ideally also retrieving the track information from CDDB or similar). More background information: Various music ...
5
votes
2answers
1k views

Extracting ID3 tags from MP3 over HTTP Live Streaming

I've been having quite a difficult time extracting ID3 information from an MP3 being streamed over Live HTTP Streaming (using the Wowza media server, if anyone is curious). I know that the tags (right ...
4
votes
2answers
122 views

What happens to a null byte when converting bytes to ISO 8859-1 encoding?

I'm not entirely sure if the question even makes sense. I'm converting a byte array taken from an ID3 tag and converting it to a string. Most text frames in an ID3 tag use ISO 8859-1 encoding but it ...
4
votes
1answer
831 views

ID3 Decision Tree with Numeric Values

I'm looking for a ID3 decision tree implementation in Python or any languages which takes a validation and a testing file as an input and returns predictions. I found this and this but I couldn't ...
4
votes
2answers
4k views

Android - Reading ID3 tags from mp3 stream

I'm streaming an mp3 file using MediaPlayer mp.setDataSource(myContext, Uri.parse("http://my_song.mp3")); mp.prepareAsync(); mp.setOnPreparedListener(mpOnPreparedListener); ...
4
votes
8answers
2k views

Is there a Perl or Python library for ID3 metadata?

Basically, I've got a bunch of music files yoinked from my brother's iPod that retain their metadata but have those absolutely horrendous four character names the iPod seems to like storing them ...
4
votes
4answers
5k views

How to read ID3 Tag in an MP3 using Python?

Does anyone has an experience of reading and writing ID3 tags in an MP3 file or a WMA file? There are some libraries but I would like to do it from the scratch. :-)
3
votes
4answers
281 views

how can I get ID3 tags of my mp3 file with php?

I'm surprised not to find more questions about it, I might be the one on stackoverflow. How do I need to go to extract ID3 basic tags of one mp3 file with php ? Without downloading any librairies (I ...
3
votes
1answer
993 views

Is there anyway to get ID3 metadata from an MP3 or Vorbis comments from Ogg via the HTML5 audio element?

Mozilla Developer Center's HTML5 media guide describes an event for audio and video elements called "loadedmetadata". Is there anyway to get the metadata for files? I am writing an HTML5 extension for ...
3
votes
2answers
678 views

How can I determine the length of an mp3 file's header?

I am writing a program to diff, and copy entire files or segments based on changes on either end (Rsync-esque... but more like Unison). The main idea is to keep my music folder (all mp3s) up to date ...
3
votes
4answers
2k views

Linux: Library to write ID3v2 data and cover art

I need to locate a command line tool that would allow me to write (read is not required) ID3v2 and album art to an MP3 file. Command line is required as it will be executed from PHP, so no graphical ...
3
votes
3answers
222 views

Is there a non-GPL Python Library for reading ID3 information from an mp3?

I have found many GPL licensed libraries for reading information from mp3s in Python. Are there any non GPL libraries?
3
votes
5answers
2k views

setting album art of a mp3 with php

I am looking for the best or any way to set the Album Art of mp3s using PHP. Suggestions?
3
votes
3answers
3k views

Ruby mp3 Id3 parsing

Currently I'm working on a music project, dealing with user mp3 uploads. The problem is that I can't find an id3 library that will work correctly for all files. I have tried id3-ruby and Mp3Info libs ...
3
votes
2answers
726 views

What happened to the “TagLib#” library?

What is the current status of TagLib# (TagLib sharp)? The official homepage www.taglib-sharp.com (link removed due to the NSFW nature of the new site that's parked at that address. -BtL) doesn't ...
3
votes
1answer
480 views

Best .Net library to edit WMA tags?

I have found a few libraries to edit MP3 tags (UltraID3Lib is great) but none that will edit tags for WMA files. Can anyone recommend a .net library for editing WMA tags / metadata ? Thanks MATT
2
votes
2answers
100 views

Pulling the last 128 bytes off a binary file with C

I am making an id3 tag editor in C. I am having trouble figuring out how to pull the last 128 bytes off the end of the binary file in order to manipulate/printout the area where the id3 tag sits. ...
2
votes
2answers
329 views

How do I read album artwork using python?

In my searches I have found that there are a few libraries that might be able to do this by reading ID3 tags. If so - which one would be the best to use? I don't plan on writing any data just reading. ...
2
votes
2answers
218 views

Extract ID3 tags of a MP3 URL using python

I am developing a python program which can extract ID3 tags of mp3 files. I am using urllib2 for checking MIME type of the URL (if it is audio/mpeg), after that I need to find information about this ...
2
votes
1answer
330 views

How do you Edit MP4 ID3 Tags in Java?

I asked a similar question some time ago, but with python, and have since then decided to switch to Java because there seemed to be more resources to do this sort of thing. Basically I need some sort ...
2
votes
3answers
265 views

Why are there Synchsafe Integer?

I started reading mp3-files in c++. All went well until i read the specs of the ID3-Tag. There are some information in ID3v2-Header about it's size stored in so called Synchsafe Integer. That is a ...
2
votes
1answer
258 views

SoundManager2 onid3() not firing

Hey, I'm building a simple Javascript jukebox using the latest SoundManager2 for audio playback, with local MP3 files being the source. I've got file loading and playing sorted, and at the moment I'm ...
2
votes
2answers
363 views

Getting specific fields from ID3 tags using command line tool?

I'm looking for a way that would let me get specific fields from ID3 tags from mp3 files. All tools I have so far found return all fields, and they also format them for "easier reading". I need just ...
2
votes
1answer
638 views

Get the Ringtone title from RingtonePreference

I have a RingtonePreference that is used to select a ringtone that is broadcasted to a receiver used in an Alarm application. I would like to display the title (the titles displayed in the list you ...
2
votes
2answers
335 views

Mac Automator to “Get Info” on sing in iTunes and then press next until the last song

Without getting into details, I am updating ID3 tags outside of iTunes and would like to import all of that data into iTunes. Before iTunes 10 I was able to select all songs and click "Get Info" - ...
2
votes
1answer
351 views

How to decode mp3 file

how get the artist of a mp3 file using lisp (let ((in (open "test.mp3" :direction :input :element-type '(unsigned-byte 8)))) (when in (loop for line = (read-byte 'utf-8 in) ...
2
votes
3answers
351 views

ID3v2 writing source for C#?

I'm currently using ID3v1, but it has 30 characters limit for Title. So I'm forced to use ID3v2 I think.. Can someone give me proper link or library for that, cause I couldn't find it in Google.
2
votes
1answer
166 views

Get/Setting the Title for videos with C#

I've looked into a couple of libraries, and have only been able to find ID3 libraries for music files. I need a way to edit the "title" field of a couple common video titles. Does anybody have any ...
2
votes
3answers
552 views

Editing MP3 metadata on a file-like object in Python?

We're generating MP3 files on the fly in Python, and need to edit the ID3 headers in-memory using a file-like object. All the ID3 libraries on PyPI appear to require you to pass a filesystem path ...
2
votes
1answer
549 views

Python scripted mp3 database, with a php front end

So, here's the deal. I am attempting to write a quick python script that reads the basic id3 tags from an mp3 (artist, album, songname, genre, etc). The python script will use most likely the ...
1
vote
1answer
59 views

AudioFileSetProperty returning 'kAudioFileUnsupportedPropertyError (pty?)'

I'm having difficulties writing a audio file's metadata: AudioFileID fileID = nil; AudioFileOpenURL((__bridge CFURLRef) url, kAudioFileReadWritePermission, 0, &fileID ); CFDictionaryRef piDict = ...
1
vote
2answers
258 views

Read ID3 Tags of Remote MP3 File in Ruby/Rails?

Using Ruby, how can one parse the ID3 tags of remote mp3 files without downloading the entire file to disk? This question has been asked in Java and Silverlight, but no Ruby. Edit: Looking at the ...
1
vote
1answer
82 views

Copy values of a mp3 tag to another tag for a batch of MP3 files

I have a large MP3 directory and somehow the values of album tags (or album names) of the files (for all of them, hundreds) are actually the values of artist tags (or artist names) and vice-versa. ...
1
vote
1answer
141 views

mutagen and id3 tags - character encoding confusion

I've run into a problem when reading some id3 tags with Icelandic letters. A quick example from the shell. >>> audio = mutagen.easyid3.EasyID3('./Björk/Albums/1990 - Gling-Gló [mp3-231]/01 - ...
1
vote
1answer
386 views

Trouble playing mp3s after id3 image edit

Due to hardware restrictions, the software we produce tries to ensure that any audio file it imports into it's library (ready to be copied onto the hardware) is an acceptable bit rate. Recently we've ...
1
vote
2answers
122 views

How do I add unicode to an ID3 tag using ruby?

I'm trying to add a unicode title to an ID3 tag (v2.3) of an MP3. Unfortunately, I can't figure out how to do it. According to id3.org's id3v2 page, Unicode strings have to begin with the Unicode BOM. ...
1
vote
2answers
192 views

identify song information from mp3 id3v2 tags

i already have mp3 binary data, i just want to know how can i extract info from it. v1 is easy, take last 128 characters and you are done. but v2 has variable length. documentation says that tag size ...
1
vote
2answers
954 views

Read ID3 Tags of an MP3 file

I am trying to read ID3 from a mp3 file thats locally stored in the SD card. I wanna basically fetch Title Artist Album Track Length Album Art
1
vote
1answer
112 views

id3 tag encoding problem in PHP

I'm now extracting id3 tags from MP3 files in my php page with the help of getid3 library, which is a lib extracting id3 tags written in php. Something really wired is that part of the metadata is in ...
1
vote
1answer
188 views

ID3 over audio streaming?

I've used AudioStreamer courtesy Matt I need to extract id3 metadata and display the current song playing.
1
vote
2answers
411 views

Reading id3v2 frames with TagLib in Powershell

I'm trying to read a file's id3v2 tag information using the TagLib# library with Powershell. Reading the standard tag properties is not a problem (artist, title etc.), but I'm having difficulty ...

1 2 3