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

Python MP3 ID3 Tag Editor

Re-organizing a large MP3 library for my friend's MP3 Player, I have the need to name the Title ID3 tag the same as the file name, and doing this via Windows Properties takes forever, so I was wondering if anyone has an idea of how to make a Python…
user1739467
7
votes
2 answers

how to fetch the details of the audio file in iPhone

I made the custom player by using AVAudioPlayer. Now, I want to fetch the details of the audio file such as artist name,album name,etc which is added in the resource folder. MPMusicPlayer provides the API for fetching the details but its using iPod…
user999231
  • 143
  • 1
  • 4
7
votes
3 answers

How do you edit MP3 files in Java (ID3)?

Lately, I've been trying to write a program that can change the ID3 tags of an mp3 file. I managed to write code to get those tags quite easily, but I have no idea how to write code to modify the tags. I assumed that there may be no easy solution,…
krp
  • 71
  • 1
  • 1
  • 2
7
votes
1 answer

Adding metadata to generated audio file

I'm generating an audio file programmatically, and I'd like to add metadata to it, such as the title and artist. I don't particularly care what format the file is written in, as long as AVPlayer will read it and send it to the playing device. (The…
Rob Napier
  • 286,113
  • 34
  • 456
  • 610
7
votes
1 answer

Editing metadata against video files

I'm attempting to write a utility for inserting my own information against recorded videos, however it seems there isn't a library out there for accomplishing this. In my latest attempt at doing this, I made use of the TagLib Sharp library, but this…
user863551
7
votes
1 answer

Most efficient way to search file for byte patterns in Elixir

I am searching for id3 tags in a song file. A file can have id3v1, id3v1 extended tags (located at the end of the file) as well as id3v2 tags (usually located at the beginning). For the id3v1 tags, I can use File.read(song_file) and pull out the…
Paul B
  • 393
  • 1
  • 3
  • 12
7
votes
4 answers

How to read and write id3v1 and id3v2 tags in Elixir

I would like to scan music files and read/write metadata using Elixir (this whole project is about learning Elixir - so please don't tell me to use Python!). As I understand it, I have two choices: call a system utility or (as no libraries exist in…
Paul B
  • 393
  • 1
  • 3
  • 12
7
votes
2 answers

Insert timed metadata into HLS (HTTP Live Stream) using id3taggenerator and mediafilesegmenter

I try to insert timed metadata into an .mov or .mp4 video file. I did read about it here: Live stream metadata reading in Apple HTTP Live…
Yaniv De Ridder
  • 773
  • 1
  • 7
  • 13
7
votes
2 answers

partially download a file with Javascript

we're actually working on a Remote Music Library organizer using javascript and I'd like to know if there's a way to download using js the last 128bytes of an MP3 file in order to get its ID3 Tags. thanks.
coolcoolcool
  • 381
  • 1
  • 6
  • 13
6
votes
2 answers

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 Java answer, it seems as though it's possible (HTTP…
Jordan Warbelow-Feldstein
  • 10,510
  • 12
  • 48
  • 79
6
votes
2 answers

Read ID3 tags without downloading the whole file

Is it possible to read ID3 tags (Duration, Artist, title...) of an MP3 file without having to download the whole file? I did a few tests and I was able to get the Artist and title tags with only downloading a few bytes of the MP3 file.. but I'm not…
YassineB
  • 221
  • 2
  • 7
6
votes
1 answer

Access Music File Metadata in Powershell

So over the years between getting copied from one PC/hard drive to the next, my music collection is in a bit of a mess, so I want to go through each one programmatically and update the file metadata in the below screenshot (from right click >…
Thomas Gass
  • 163
  • 1
  • 5
6
votes
1 answer

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 labels send us CDs of music which we then deliver…
Jonathan Williamson
6
votes
2 answers

Does AVRCP 1.3 support album art?

Does AVRCP 1.3 support album art? Based on list of media attributes, album art is not included in the list. If AVRCP 1.3 do support album art, how do the information pass?
ok_woei
  • 103
  • 2
  • 5
5
votes
1 answer

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 = nil; UInt32 piDataSize = sizeof(piDict); …
basvk
  • 4,437
  • 3
  • 29
  • 49
1 2
3
35 36