Set Up Taglib To Use?

Jan 11, 2011

How do I set up taglib to use? (imports etc.)

I downloaded taglib-1.6.3 and have it in a folder in my website

View 1 Replies


ADVERTISEMENT

TagLib Can't Change Artist Tag?

Mar 4, 2010

I am using Taglib# from http://developer.novell.com/wiki/index.php/TagLib_Sharp I can read all the tags and edit the title and album but not the artist.

On the site they say

code
file.Tag.Title = title
file.Tag.Track = track
file.Tag.Album = album
file.Tag.Artists = artists

but then I get an error that file.tag.artists is obsolete and I need to use albumArtists or performers. When I do this I cant change the value. Even not when I change it in the watch view.

View 1 Replies

TagLib# - MP3 Files, Tagging And Images.?

Nov 28, 2009

im using this MP3 tagging library called TagLib# or TagLibSharp.

Unfortunately the documentation is a bit patchy to say the least and their (Official) website, which contains all the documentation seems to have closed down, leaving me to download this MP3 tagging library from the link below.
http://developer.novell.com/wiki/index.php/TagLib_Sharp

Everything so far works, including tagging the 'Artist, Title, Album' etc. but I want to include an image in my MP3 files, like album art.I have found some sample code to read the image back from the tag using their library, I just can't work out what it would look like the other way around.

If filetotag.Tag.Pictures.Length >= 1 Then
Dim bin = DirectCast(filetotag.Tag.Pictures(0).Data.Data, Byte())
AlbumArt.Image = Image.FromStream(New MemoryStream(bin)).GetThumbnailImage(115, 115, Nothing, System.IntPtr.Zero)
End If

This code above will read an existing tag and load the image into a picture box called 'Album Art'.how to 'flip' it so that it would look something like ...

filetotag.Tag.Pictures = AlbumArt.Image

Obviously using the memory stream functions etc.

View 5 Replies

TagLib# Windows Distribution Or Another Good ID3 Reader?

Feb 2, 2010

i wanted to write a quick program to get the file organization of my MP3 files back into sync with the info in my ID3 tags... I had tried to get the Windows Media Format SDK, but when i go to install it says it can only run on WinXP. Problem is it seems the official site is gone, and the other links i've found to a hosting on Novell's servers is also down. Anyone know where i can still get a distro of TagLib# for C#/VB.NET for Windows? Or another good ID3 tag reader?

View 2 Replies

Write Id3v2 Album Artist Using Taglib?

May 2, 2011

how to make taglib save certain tags that use arrays. For example when I save the album i can just type ID31.Album = txtalubm1.text. But if I want to save albumartist since its an array I cant seem to do it the same way.

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved