Questions tagged [id3]

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

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

More information at https://en.wikipedia.org/wiki/ID3

539 questions
5
votes
2 answers

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 just want a neat function that returns an…
vdegenne
  • 12,272
  • 14
  • 80
  • 106
5
votes
2 answers

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. Also I'm trying to make this app as portable as…
Sheldon
  • 9,639
  • 20
  • 59
  • 96
5
votes
1 answer

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 MP3 file. Problem is, I dont want to load that Mp3…
Kevindra
  • 1,682
  • 3
  • 24
  • 45
5
votes
3 answers

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 exist anymore! I've found the project on ohloh where…
ulrichb
  • 19,610
  • 8
  • 73
  • 87
5
votes
0 answers

Parsed timed_id3 values from HLS stream

How do I parse timed_id3 values taken from a HLS stream chunk? Twitch stream chunks contain info like encoding time in a 3rd data stream that ffprobe identifies as timed_id3, the extracted data…
Ecko
  • 1,185
  • 1
  • 9
  • 11
5
votes
2 answers

How do I decode id3 metadata in a chromecast receiver app?

Using Host.processMetadata() to get ID3 tags in the video stream. It says that this comes as a Uint8Array but I can't figure out how to decode this properly. I am using: new TextDecoder("utf-8").decode(data); However that is not decoding the data…
Mike Mintz
  • 273
  • 1
  • 11
5
votes
1 answer

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 adapt them to numeric values, e.g. to Iris…
Stephen T.
  • 1,883
  • 2
  • 15
  • 11
5
votes
1 answer

ID3 Album Art / Cover Tag Field

What is the field name for covers / album arts in id3 tags? For eg. : Title : title - TT2 - TIT2 Artist : artist - TP1 - TPE1 Album : album - TAL - TALB Cover: ? - ? - ? I hope somebody can help me... Thx in advance!
Marc Becker
  • 523
  • 2
  • 7
  • 18
5
votes
3 answers

How can I stop mutagen automatically updating the ID3 version?

When I tried to embed album art in an MP3, mutagen updated the ID3 tag to version 2.4 - which I don't want, because in ID3v2.4 my cell phone (which runs Windows Phone 8) and my computer can't recognize the tags. Apparently, simply changing the…
prehawk
  • 195
  • 12
5
votes
3 answers

What is the "TPE1" KeyError?

I'm using the mutagen module for Python to get the artist of various MP3 files I have. Here's the code giving the error: audio = EasyID3(C:\Users\Owner\Music\Music\Blue Öyster Cult\Blue Öyster Cult\Cities on Flame) print audio["artist"] The code is…
Cisplatin
  • 2,860
  • 3
  • 36
  • 56
5
votes
3 answers

TagLib sharp not editing artist

I'm trying to save new artist and title id3 tags into tracks. Loading tags from tracks working good, also editing title for track is working fine. But when i try to edit performer (artist) it didn't change anything. Here is the code public void…
Ali Yeşilkanat
  • 597
  • 1
  • 7
  • 21
5
votes
4 answers

Linux: Library to write ID3v2 data and cover art

I need to locate a command line tool that would allow me to write ID3v2 and album art to an MP3 file. Command line is required as it will be executed from PHP, so no graphical interface. Searches of Google have proved fruitless, so perhaps there is…
tombazza
  • 646
  • 9
  • 24
4
votes
7 answers

How can I remove the copyright tag from ID3 of mp3s in python or php?

I have a bunch of mp3 files that are pretty old and don't have any copy rights. Yet, the place I got them from has filled the copy right tags with its own website url. I was wondering if there's an easy way to remove these tags programmatically?…
Roozbeh15
  • 4,047
  • 6
  • 27
  • 30
4
votes
2 answers

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 depends on the frame. In any case, if you look up…
user838293
  • 63
  • 6
4
votes
2 answers

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 of library, idea, or instructions that would…
RedHack
  • 285
  • 7
  • 18