File Properties - mp3
-
In mp3 files there are tags/properties of Artist Name, Song Name, Album Name. Is there any way through which i can fetch these values (provided i have a list of mp3 files) into variables. Pls help Thanks :-0
-
Hi, I am facing a strange problem in this. When i try to trap the value of artist and title as: dim artist as string artist = objMP3V1.Frame(MP3ID3v1.FrameTypes.Artist) dim title as string title = objMP3V1.Frame(MP3ID3v1.FrameTypes.title) dim new Name as string newName = artist + title The variable 'newName' does not contain the values of both title and artist. It only contains of artist whereas individually i am able to see the values of artist (msgbox(artist)) and title (msgbox(title)). Pls reply within half hour.......
-
Hi, I am facing a strange problem in this. When i try to trap the value of artist and title as: dim artist as string artist = objMP3V1.Frame(MP3ID3v1.FrameTypes.Artist) dim title as string title = objMP3V1.Frame(MP3ID3v1.FrameTypes.title) dim new Name as string newName = artist + title The variable 'newName' does not contain the values of both title and artist. It only contains of artist whereas individually i am able to see the values of artist (msgbox(artist)) and title (msgbox(title)). Pls reply within half hour.......
Ok, first, make sure you have imported the right file into your project. Go to the link I refrenced in my post, and download the source code. Then, import MP3Info.vb from the zip file. Then, use this in your source code:
Dim mp3reader As New Monotic.Multimedia.MP3.MP3Info Dim artist As String Dim newname As String mp3reader.Filename = FileName artist = mp3reader.ID3v1Tag.Artist title = mp3reader.ID3v1Tag.Title newname = artist + title
Where FileName is the filename of your MP3. That should work, I tested it. -
Ok, first, make sure you have imported the right file into your project. Go to the link I refrenced in my post, and download the source code. Then, import MP3Info.vb from the zip file. Then, use this in your source code:
Dim mp3reader As New Monotic.Multimedia.MP3.MP3Info Dim artist As String Dim newname As String mp3reader.Filename = FileName artist = mp3reader.ID3v1Tag.Artist title = mp3reader.ID3v1Tag.Title newname = artist + title
Where FileName is the filename of your MP3. That should work, I tested it.