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
4
votes
1 answer

how to read id3 tags / other metadata from an HLS stream in swift / AVKIT

I am trying to gather some knowledge about how to read metadata from an HLS stream inside an iOS app. The following HLS stream has some ID3 tags which I want to read: HLS test stream In the web inspector in Safari, I am able to see lots of data…
WalterBeiter
  • 2,021
  • 3
  • 23
  • 48
4
votes
1 answer

Mutagen : how to extract album art properties?

I am trying to get properties (just width & heigth so far, but probably more later) of an album art picture from an mp3 file using python 3.7.1 and mutagen 1.42, but nothing seems to work so far. I am yet able to extract some other information…
Arkeen
  • 554
  • 8
  • 20
4
votes
1 answer

How to get and print mp3 Popularimeter frame with golang id3-go library

I would like to read the Popularimeter frame from a file with id3-go. This is how the frame looks like when printing with mutagen-inspect: $ mutagen-inspect samples/with_popm.mp3 | grep POPM POPM=traktor@native-instruments.de=0 255/255 I would like…
Wolkenarchitekt
  • 20,170
  • 29
  • 111
  • 174
4
votes
2 answers

C# TagLib Set Album Cover for Mp3

I have an mp3 file and I want to add the album art to it. The art has been saved into a temp folder, I have check this and it is there and is a jpeg. This is the code I gave: public void AddMp3Tags() { TagLib.File file =…
4
votes
2 answers

How do I embed chapter metadata in mp3 files in C#?

I'm trying to make a tool to edit and embed chapter markings in mp3 files (for podcasting) through this spec. All of the libraries I've found so far do not support the CHAP or CTOC frames, nor can I figure out a way to make them work with custom…
Snivets
  • 43
  • 4
4
votes
2 answers

Javascript: Edit ID3 tags of mp3

I have a blob data of an mp3 downloaded from server using XMLHttpReqest in my web application. I want to edit the ID3 tags of the file (i.e. edit album art, genre, artist, album etc.). I checked by there are libraries that can read ID3 tags in…
meteors
  • 1,747
  • 3
  • 20
  • 40
4
votes
1 answer

Python: reading ID3v1 tag with Kaitai Struct

I'm trying to get Kaitai Struct to parse a ID3v1 tag format for MP3s. According to the standard, it is a fixed format structure located at the certain offset - but the trick is that this offset is calculated not from the beginning of the file, but…
dpm_min
  • 315
  • 3
  • 6
4
votes
1 answer

is it possible to read mp3 id3 tags in php using ffmpeg? if so then how?

Hi i have a few mp3 files in my server which constantly change and i need the mp3 id3 tags for people to know what song is being played at the moment preferably via php . I am a complete noob at this so any help is helpful.
4
votes
0 answers

error: cannot find symbol in java/android phonegap/cordova plugin when importing jar

I want to modify ID3 tags (MP3 File) by using phonegap/cordova ionic. I found a library My ID3 Tags for android https://sites.google.com/site/eternalsandbox/myid3-for-android but when I include jar file, it's shows the error while compiling ionic…
Tariq
  • 155
  • 5
  • 21
4
votes
1 answer

Change embedded image type in APIC ID3 tag via Mutagen

I have a large music library which I have just spent around 30 hours organizing. For some of the MP3 files, I embedded the cover art image as type 0 (Other) and I'd like to change it to type 3 (Front Cover). Is there a way to do this in Python,…
Naftuli Kay
  • 87,710
  • 93
  • 269
  • 411
4
votes
3 answers

Remove ÿþ from string

I'm trying to read ID3 data in bulk. On some of the tracks, ÿþ appears. I can remove the first 2 characters, but that hurts the tracks that don't have it. This is what I currently have: $trackartist=str_replace("\0", "", $trackartist1); Any…
austinh
  • 1,061
  • 6
  • 13
  • 34
4
votes
0 answers

Write exif data to android video files

I am extracting metadata information (Exif infor) by using Id3 library in android, but I am getting null pointer exception and getting null in log Message it is a reason because value in src_set is null .I am not getting why it is returning null. my…
Jitendra Prajapati
  • 1,002
  • 1
  • 10
  • 33
4
votes
3 answers

id3 information

I want to know about the id3 metadata, I am eager in extracting the album art from the mp3 file. Can u help me in suggesting a page which says about the id3 tag information (especially the images). I cant able to access the id3 developer info…
Dinesh
  • 111
  • 6
4
votes
0 answers

How accurate is mutagen track length info

I'm doing some auditing of my music library (using Mutagen/Python), including looking for duplicates. In particular, I am writing a program to look for duplicates and I am using track-length as part of the way I compare two tracks. In the process of…
RFlack
  • 436
  • 1
  • 5
  • 19
4
votes
2 answers

How to set: "artist", "album artist", "year", "album", "song number" and "title" fields of the tag, with mutagen

I'm trying to use mutagen (with Python 2.7.5) to create a program that, given that the path to songs is ...\Artist\Year Album\Songnumber Title.mp3, sets the artist, album artist, year, album, song number and title tags of the song, and preserves the…
H.v.M.
  • 1,348
  • 3
  • 16
  • 42