

Id3 editor save template software#
Most applications these days support ID3 v2 standards, so you don’t really need to worry about adding ID3 v1 tags unless you want your podcast to be compatible with some older pieces of software and hardware. So for this experiment, we’ll focus on the first 3 categories: The ‘extended’ and ‘podcast’ categories (as the names may imply) are just ways to store additional information about your MP3 file which can’t be stored directly in the ID3 v2 basic tags. Note: we didn’t look at all ID3 tags (there are a lot of them). We focused on the tags that are most commonly used in iTunes and ID3 editing software. If you want to ‘geek out’, you can see all ID3 tags here. The Resultsįor each of the iTunes top 10 podcasts, we looked to see which ID3 tags they were using in each of the 3 categories.There are only 6 tags in ID3 v2 category used by all the podcasts.Always add ‘title’, ‘artist’, ‘album’, ‘year’, ‘genre’ and ‘cover art’ image.The extended tags are pretty much ignored by the leading podcasts.There’s no harm in adding these, but it won’t reap many benefits.The podcast tags are used by all the leading podcasts – you should too.The ‘identifier’ tag is usually assigned by iTunes so you don’t need to that.Focus on the other 2 tags - ‘feed’ and ‘description’ĭo you remember, we decided to ignore the ID3 v1 tags for this experiment?.Some people will still tell you to add these tags.The ID3 v1 tags are ignored by most of the leading podcasts – you should too.There are a lot of ID3 tags that you could add to your podcast files.īut based on the iTunes top 10 podcasts, only 8 tags matter for your podcast: There are several tools that you can use to add the ID3 tags. To add ID3 tags to your MP3 file in iTunes:ġ. From the ‘File’ menu choose ‘Add to Library’Ģ. Find the file that you just added in your iTunes Libraryģ. Right-click on the file and choose ‘Get Info’Ĥ. Click on the ‘Options’ tab and change ‘media kind’ to ‘Podcast’:ĥ. Click on the ‘Details’ tab and add the title, author (host), podcast name, release date, genre and year:Ħ. Click on the ‘Artwork’ tab and upload your cover art:ħ. Click on the ‘Description’ tab and add your episode description:Ĩ. 'Name the class clsMp3TagV1, and use it like this:ĭebug.Print.

GenreName attribute doesn't seem to work in his code.) I also wrote the aquire_files sub to populate a worksheet with the ID3 info (so that it may be edited and later written back to the file)
Id3 editor save template code#
I added the function to do a GenreLookup by pulling info from his code (the. Then this into a regular module to use it: Private Function RTrimZ(s As String) As String ' no MP3 tag already, need to extend the fileĮrr.Raise vbObjectError + 1, "clsMp3TagV1", m_sMp3File & " is not a valid MP3 file." Open m_sMp3File For Binary Access Read Write Lock Write As #f If Not (StrComp(tag.tag, "TAG") = 0) Then Open m_sMp3File For Binary Access Read Lock Write As #f% Public Property Get GenreName(ByVal Genre As Byte) As StringĬase 136: GenreName = "Christian Gangsta Rap"Ĭase 140: GenreName = "Contemporary Christian"Ĭase 51: GenreName = "Techno - Industrial" Public Property Let Genre(ByVal value As Byte) Public Property Let Comment(ByVal value As String) Public Property Let Track(ByVal value As Byte) Public Property Let Year(ByVal value As String)

Public Property Let Album(ByVal value As String) Public Property Let Artist(ByVal value As String) Public Property Let Title(ByVal value As String) Public Property Get HasID3v1Tag() As Boolean Public Property Let MP3File(ByVal value As String) 'Place this code into a CLASS module and name it "clsMp3TagV1"
