Click here to Skip to main content
6,594,932 members and growing! (14,928 online)
Email Password   helpLost your password?
Languages » VB.NET » General     Intermediate License: The Code Project Open License (CPOL)

MP3 ID3v1 Editor

By Hamed_ji

Edit many ID3v1 at the same time
VB, Windows, .NET, Visual Studio, Dev
Posted:11 Jan 2006
Updated:18 Jan 2006
Views:32,717
Bookmarked:19 times
Unedited contribution
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
14 votes for this article.
Popularity: 2.99 Rating: 2.61 out of 5
4 votes, 28.6%
1
3 votes, 21.4%
2
2 votes, 14.3%
3
3 votes, 21.4%
4
2 votes, 14.3%
5

Introduction

This application is for read and write ID3v1 information of mp3 files. As i explain the codes i explain how ID3v1 works.

ID3 is some part of mp3 files that contains information about that file. like the title of song or artist name and etc...

ID3 have 2 major versions and this program is for working with version one. and read or write ID3v1 data. for more information about ID3 visit http://www.id3.org/

Read ID3v1.1

Declare a buffer for read from file:

Public buffer(128) As Byte

ID3v1 is at the end of file and ID3v2 is at the begining of the file. so for open ID3v1 we need to read file from the end. Lenght of ID3v1 is fix and it's 128 bytes (it's because the buffer size is 128 bytes). Make a stream to file for read 128 bytes of file from end.

        If mp3File.Length > 128 Then
            Dim mp3Reader As Stream = mp3File.OpenRead()
            mp3Reader.Seek(-128, SeekOrigin.End)
            Dim i As Integer
            For i = 0 To 127
                buffer(i) = mp3Reader.ReadByte
            Next
            mp3Reader.Close()
        End If
note: if the file lenght was fewer than 128 bytes, it's clear that file don't have ID3v1 because ID3v1 size is fix and it's 128 bytes

As you can see with this code we save all 128 byte of file to buffer. Next step is check if buffer contain ID3 data. if first 3 bytes of buffer was "TAG" it means the file have ID3v1 and if not it means file don't have ID3v1. we check it with following 'if':

If Encoding.Default.GetString(buffer, 0, 3).Equals("TAG") Then

 'Read Data

End If

How to read data ? theres some kind of standard that you must know for reading this data. let me say how read data from our buffer. the bytes 0 to 2 as you saw must be equal to "TAG".

  • 3 to 32 Contain Title ( 30 Characters )
  • 33 to 62 is Artist ( 30 Characters )
  • 63 to 92 is Album name ( 30 Characters )
  • 93 to 96 is Year ( 4 Characters )
  • 97 to 125 is Comment ( 28 Characters )
  • 126 is Track Number ( 1 Character )
  • 127 is Genre ( 1 Character )

With this information we read ID3v1 data with following codes:

_Title = Encoding.Default.GetString(buffer, 3, 30)
_Artist = Encoding.Default.GetString(buffer, 33, 30)
_Album = Encoding.Default.GetString(buffer, 63, 30)
_Year = Encoding.Default.GetString(buffer, 93, 4)
_Comment = Encoding.Default.GetString(buffer, 97, 28)
_TitleNumber = Convert.ToInt32(buffer(126).ToString())
If Convert.ToInt32(buffer(127)) > 0 Then
    _Genre = Convert.ToInt16(buffer(127))
End If
note: The Genre number is standard and we don't have definition for numbers greater than 127. it's because the code control control Genre to understand if it's smaller than 127

If file includes ID3 we set _HasTag and _HadTag to true else we set them false. we need to know if file Had Tag it need for write ID3 as you will see.

We have some public properties for Title, Artist, Album, Year, Comment, TrackNumber and Genre.

In main application we must read information with this properties and set them if we need and then call WriteID3

Write ID3v1.1

For write ID3 Data first we must fill our buffer with variables data. to do this run this code:

buffer.Clear(buffer, 0, 128)
Encoding.Default.GetBytes("TAG".ToUpper.ToCharArray()).CopyTo(buffer, 0)
Encoding.Default.GetBytes(_Title.ToCharArray()).CopyTo(buffer, 3)
Encoding.Default.GetBytes(_Artist.ToCharArray()).CopyTo(buffer, 33)
Encoding.Default.GetBytes(_Album.ToCharArray()).CopyTo(buffer, 63)
Encoding.Default.GetBytes(_Year.ToCharArray()).CopyTo(buffer, 93)
Encoding.Default.GetBytes(_Comment.ToCharArray()).CopyTo(buffer, 97)
buffer(126) = _TitleNumber
buffer(127) = Convert.ToInt32(_Genre)

As you see we cleared the buffer and then fill the buffer with variables data. As we said before first three bytes must be "TAG". remember "TAG" is case sensitive you can't use "Tag" or "TaG" or any thing except "TAG".

We need to open file for write data

Dim mp3Writer As FileStream = mp3File.OpenWrite()

If the file has tag now and had it before it means we must start overwrite data to final 128 bytes. and if file hadn't tag but now it have. it means we must write data at the end of file. or file had tag before and don't have tag now it means we must delete 128 bytes from end.

If _HasTag And _HadTag Then
   mp3Writer.Seek(-128, SeekOrigin.End)
   mp3Writer.Write(buffer, 0, 128)
ElseIf (Not _HadTag) And _HasTag Then
   mp3Writer.Seek(0, SeekOrigin.End)
   mp3Writer.Write(buffer, 0, 128)
   _HadTag = True
ElseIf _HadTag And (Not _HasTag) Then
   _HadTag = False
   mp3Writer.SetLength(mp3Writer.Length - 128)
End If
mp3Writer.Close()
note: Of course it's clear that if file didn't have tag and now don't have either we must not do some special thing

For those that more relax with C# visit http://www.codeproject.com/cs/media/id3v1editor.asp

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Hamed_ji


Member
I like programming because, you can create something that never exist before. and this is special part of programming.

other special thing about programming is that must of time that you make program. your program goal is out of computer area. you make math, accounting or multimedia applications for ex. this is the reason when you programming you learn somthing about other sciences and this make programming more nice.
Occupation: Web Developer
Location: Iran, Islamic Republic Of Iran, Islamic Republic Of

Other popular VB.NET articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 18 of 18 (Total in Forum: 18) (Refresh)FirstPrevNext
Generalhi PinmemberMember 38977240:37 26 Mar '08  
Generalhelp PinmemberMember 38977241:06 17 Mar '08  
GeneralRe: help PinmemberMember 38977240:16 26 Mar '08  
QuestionMP3 ID3v1 Editor and VB 2005 Express Edition Pinmembertreble19995:31 15 Nov '07  
GeneralThank you Pinmemberimanali23:55 30 Dec '06  
GeneralNeed Help: How to Fade an mp3 or wav Pinmemberpinoylandia16:04 23 May '06  
GeneralRe: Need Help: How to Fade an mp3 or wav PinmemberHamed_ji13:26 31 Jul '06  
GeneralRemove id3 PinmemberQCPBraca16:03 15 Mar '06  
GeneralRe: Remove id3 PinmemberHamed_ji5:21 16 Mar '06  
GeneralRe: Remove id3 PinmemberQCPBraca23:16 20 Mar '06  
GeneralRe: Remove id3 PinmemberHamed_ji8:58 21 Mar '06  
GeneralRe: Remove id3 PinmemberQCPBraca22:00 21 Mar '06  
GeneralNot bad... PinmemberHyperX12:15 21 Feb '06  
GeneralSource File missing PinmemberIftikhar Ali1:11 17 Jan '06  
GeneralRe: Source File missing PinmemberHamed_ji1:10 18 Jan '06  
GeneralNot very well written. Pinmemberlintball9:48 11 Jan '06  
JokeRe: Not very well written. PinmemberRunyonAveSoulja6:54 5 Sep '06  
GeneralCode? PinmemberBojan Rajkovic8:29 11 Jan '06  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 18 Jan 2006
Editor: Chris Maunder
Copyright 2006 by Hamed_ji
Everything else Copyright © CodeProject, 1999-2009
Web20 | Advertise on the Code Project