Questions tagged [id3-tag]

ID3 tag is a type of metadata container used to store information about an MP3 file within the audio file itself.

91 questions
2
votes
1 answer

How to read Id3v2 tag

static void Main(string[] args) { FileStream fs = File.Open(@"C:\Skrillex - Rock n' Roll (Will Take You to the Mountain).mp3", FileMode.Open); BinaryReader br = new BinaryReader(fs); byte[] tag = new byte[3]; byte[] version = new…
blurfx
  • 1,270
  • 11
  • 22
2
votes
1 answer

Embed Album Art in Mp3 using Tag Lib C#

Trying to add Album art using c# tag lib, TagLib.File trackFile = TagLib.File.Create(strLocalFile); Picture picture = new Picture("Picture path"); picture.Type = PictureType.FrontCover; picture.MimeType = "image/jpeg"; picture.Description…
MusicMan
  • 914
  • 1
  • 7
  • 18
1
vote
1 answer

taglib-ruby and resource balancing (freeing file handles)?

Friends, I am trying to processing a huge amount of audio files using a Ruby (1.9.3) script by scanning their ID3-Tags using the pretty fast taglib-ruby (0.2.1 via Gem-Server) library. Here is a part of my code, while audio contains the full file…
1
vote
1 answer

jAudiotagger - How to create custom TXXX tags

I want to create/add a custom ID3 tag to a MP3 (ID3v2.3 or ID3v2.4). There is a TXXX tag for this purpose, but I don't know how to create it using the library jAudiotagger.
Pwdr
  • 3,712
  • 4
  • 28
  • 38
1
vote
1 answer

How many characters can I store in an ID3v2 comment?

I'm trying to find some definite information on the length comment area in ID3v2 tags. In the spec it doesn't mention anything concrete(or I just don't understand it). Thanks for your help
Paul Sheldrake
  • 7,505
  • 10
  • 38
  • 50
1
vote
4 answers

Having trouble writing ArtWork with Taglib-sharp 2.0.4.0 in .Net

I'm having trouble with writing artwork in an MP3 File. I'm able to read and display all the artwork inside the MP3 file, using Taglib-sharp, but when it comes to insert more than 1 Picture (ex:FrontCover and BackCover) in the MP3 tag, i'm having…
Paul
  • 11
  • 1
  • 3
1
vote
1 answer

Is it possible to use the standard Music application to select an audio file?

in my application, I want to be able to select an audio file which is on the device to be used. The standard audio player in Android 2.3 "Music" offers everything I need to fullfill the requirements. Is it possible to send an Intent to open the…
andreas
  • 1,483
  • 1
  • 15
  • 36
1
vote
1 answer

Extract Album Art Image of MP3 URL

I am trying to extract album art image from mp3 URLs. I am basically having several MP3 URLs set, and I am playing them on a website, but I do not have album art of the songs. How can I get it? Is it possible to parse ID3 tags to get album art? How…
Kevindra
  • 1,682
  • 3
  • 24
  • 45
1
vote
2 answers

Reading mp3 tag information in vb.net

I'm doing a project in VB.NET 2005, in which I have to extract the tag information of mp3 files. For that purpose I have used code in this page. But the issue is when one of the tag is empty, it didn't return any values. For example, using this i…
vkGunasekaran
  • 6,668
  • 7
  • 50
  • 59
1
vote
1 answer

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 Chinese or Russian. When those kind of tags are…
Summer_More_More_Tea
  • 12,740
  • 12
  • 51
  • 83
1
vote
1 answer

write new id3v2-tags in mp3-headers (actionscript-3)

Hello is it possible to write new id3v2 tags to a mp3-file through actionscript? Normally you can read/write tags like artist,album,genre... But I would like to add for example the tag "atmosphere = smooth". Thanks
algro
  • 639
  • 4
  • 8
  • 25
1
vote
1 answer

Why am i getting an error hip: bitstream problem, resyncing skipping while playing mp3 songs?

I am getting an error of bitsream problem. I am already skipping reading of id3tag by 512 bytes, but still I am not able to play all songs while some songs are getting played define MP3_SKIP_SIZE …
Preenu P
  • 21
  • 5
1
vote
2 answers

How to write to the ID3 tag WFED URL frame using Python 3.7 and Mutagen on a Windows 10 PC

I have been creating an MP3 tag editor with Python 3.7 and Mutagen on a Windows 10 PC. I would like to write to the URL frame WFED but it does not respond. I have been able to successfully update another URL frame, WXXX using the code below. The…
Neil Ball
  • 11
  • 3
1
vote
1 answer

fetch several fields in id3 tag ffmpeg php

Need help in fetching several fields in id3 tag ffmpeg php. the output file format i want to change for example another bitrate mp3 320 kbps instead of 128.......and to include ID3 tags fetch from db.
Asim khan
  • 21
  • 3
1
vote
1 answer

JAudiotagger java.lang.VerifyError in android

I am trying to create an audio tag editor refering to these http://www.jthink.net/jaudiotagger/ and JAudioTagger and Android - Change a value in an mp3? and Jaudiotagger ID3 TAG for android - can set artwork but cannot set other fields which…
1234567
  • 2,226
  • 4
  • 24
  • 69