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
3
votes
2 answers

Using eyeD3 to embed album art from URL

i am working on a python script that downloads a music file from a server and then adds an album image to it from a URL, for this i am using the eyeD3 python library my original code below. import eyed3 mySong =…
Chris James
  • 151
  • 2
  • 14
3
votes
0 answers

Implementing Pseudocode For ID3 Algorithm

I'm trying to implement the pseudo code for the id3 algorithm that is given below function ID3 (I, 0, T) { /* I is the set of input attributes * O is the output attribute * T is a set of training data * * function ID3 returns a decision…
X X
  • 31
  • 2
3
votes
3 answers

Binary reading ID3 tag of mp3 file

I'am trying to read a mp3 file in c++ and show the id3 information that the file contains. The problem I have is when i read the frame header the size of the content that it holds is wrong. Instead of giving me a integer of 10 bytes it gives me…
Fredrik
  • 484
  • 4
  • 13
3
votes
0 answers

Python eyed3 what tags are available?

is there a list of tags which you can extract with eyed3? Apart from the obvious ones such as artist, track etc what others are available? I found out through trail and error that Bitrate is actually info.bit_rate I can't seem to find a list in the…
twigg
  • 3,753
  • 13
  • 54
  • 96
3
votes
1 answer

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
Matt
  • 652
  • 1
  • 7
  • 18
3
votes
2 answers

Parsing id3 data from a local audio file within firefox addon

I'm developing a Firefox addon using the SDK, which lists audio files on your computer using require("sdk/io/file").list(). I build an array of file paths using the method above and pass this array to a contentScript attached to a Panel. The Panel…
bobbyrne01
  • 6,295
  • 19
  • 80
  • 150
3
votes
2 answers

ID3 Frame Header

I want to try to read ID3 tags on my own without a library for educational purpose. I have to do a presentation for school on how to do it. First I read the ID3 header (first 10 bytes). It works. Now I try to read the first Frame Header which is in…
Davlog
  • 2,162
  • 8
  • 36
  • 60
3
votes
2 answers

Reading ID3 tags of a remote mp3 file?

Read MP3 Tags with Silverlight got me started with reading id3 tags, but i realize that taglib# online deals with local file paths ? Is there a way of reading this info from a remote file ?
kps
  • 43
  • 4
3
votes
1 answer

Renaming ID3 tag in Bash script with eyeD3

I have the following script that finds any file with the .mp3 extension in the incoming directory and moves it to the complete directory - it works perfectly! #!/bin/bash find /usr/audio/incoming -name '*.mp3' -exec mv {} /usr/audio/complete…
Grant
  • 1,297
  • 2
  • 16
  • 39
3
votes
1 answer

Jaudiotagger ID3 TAG for android - can set artwork but cannot set other fields

I'm relatively new to Java programming. Here i'm trying to use Jaudiotagger library for altering/creating new ID3 tag for mp3s without one in one of my android project. However, I really cannot set to made the library work correctly. That is, For…
spaceman12
  • 1,039
  • 11
  • 18
3
votes
1 answer

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 Google Chrome and I don't know what the metadata…
Bjorn
  • 69,215
  • 39
  • 136
  • 164
3
votes
3 answers

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 over multiple locations. I'd like to send…
Ty Norton
  • 319
  • 5
  • 14
3
votes
4 answers

Remove cover art with mp3agic

I'm using mp3agic to edit mp3 tags automatically, so that my radio displays everything the way I like it. However, my radio seems to hate big album art images, resulting in not parsing the rest of the mp3 tag. Hence, I want to use mp3agic to remove…
Franz Kafka
  • 10,623
  • 20
  • 93
  • 149
3
votes
2 answers

ID3v2 Specification

Based on http://id3.org/id3v2.3.0 specification, the layout of the frame header is: Frame ID $xx xx xx xx (four characters) Size $xx xx xx xx Flags $xx xx But same page just couple of lines below that says that frames that…
Ωmega
  • 42,614
  • 34
  • 134
  • 203
3
votes
1 answer

Read AND write ID3 tags to local files with javascript/jQuery via browser?

I haven't really found anything that can do just this - read AND write ID3 tags (to e.g. mp3 files). Should run from within a web browser. Did anyone come by that? Thanks in advance!
Chris
  • 580
  • 5
  • 17