TagLib# (or TagLib-Sharp) is a C# library for reading and writing most common formats of metadata (both "tags" and media properties) for audio, video, and picture formats.
0
votes
1answer
7 views
How could you remove MP3 tags from an existing file
I am looking to strip out ID3v1, ID3v2.x tags from an .mp3 file using C#. I would rather not implement it myself - but use something tried and tested.
TagLibSharp looks really good for creating tags ...
0
votes
0answers
39 views
Powershell - Set 'title' in photo file using Taglib-sharp not working
I'm trying to change the 'title' (extended file attribute) in multiple photos using Taglib-Sharp in Powershell.
While it works fine for most, it doesn't for certain photos. So far from my initial ...
0
votes
0answers
47 views
Accessing Music Library with TagLib
I am building Windows Store App. I want to access mp3 files in my Music Library. This is my code
StorageFolder musicFolder = KnownFolders.MusicLibrary;
IReadOnlyList<StorageFile> fileList = ...
1
vote
1answer
108 views
The latest TagLib port for C#?
Does anybody know where can I download C# wrapper for the latest TagLib version? The latest version I use is from the Mono package:
https://github.com/mono/taglib-sharp
But it doesn't support tags of ...
0
votes
0answers
118 views
TypeInitializationException while editing metadata tags (title, comment…) of mp4 video stored in windows phone isolated storage, using TagLib#
I have wp7 app, developed in VS2010, and i have a scenario where i record a video, store it in the isolated storage and then (on button click) upload it to my test server. That all works, and i can ...
0
votes
0answers
123 views
TagLib-Sharp can't read or write comment from Flac file
Sorry, but I an still an NewBie with C#.
I try to read an write Tags from FLAC files to speed up organizing my music.
Cover art and most tags work but, when I try to read the Comment field with ...
0
votes
2answers
192 views
Good way to write ID3v2 track number as string in C#?
Forgive me if this question is already answered somewhere on this site, but I didn't find anything when I searched for it. I've written a ID3v1/2 tag editor for .mp3 files in C# using taglib-sharp, ...
0
votes
0answers
90 views
How to attach documentation to TagLib# library in Visual Studio 2010?
I found this but it doesn't help me.
I want to attach the documentation that came in docs folder from TagLib# library, it contains this files (also visible in the given link):
Makefile.am
...
1
vote
1answer
310 views
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;
...
0
votes
1answer
137 views
Read video information(date created)?
In window, i can get the date created of the video from properties(right click). I have a few idea on this but i dont know how to do it. 1. Get the video information directly from video(like in ...
1
vote
0answers
271 views
TagLib Sharp returning blank artist when mp3 has artist listed
When retrieving the artist tag using TagLib Sharp, I've had some issues. Out of my 3000 or so songs, a few hundred had an empty string for the artist. However, in Windows Media Player and Windows ...
0
votes
0answers
87 views
Copying Exif from existing image to a newly created one
I want to copy the EXIF metadata from an existing image file to another file which is newly created without any EXIF info.
And I hope to do this with taglib#, here is the code:
using System.Drawing;
...
2
votes
2answers
430 views
Is there an equivalent field to Label/Publisher in taglib-sharp?
I'm trying to update the label/publisher field using Taglib-sharp, but I can't see it anywhere in its Object Hierarchy using Object Browser.
I've searched through google and the documentation and it ...
1
vote
0answers
130 views
TagLib lacks video-metadata properties?
I've been trying to set extended properties of mp4 such as Director and Publisher, but those are nowhere to be found when I browse the File.Tag suggestions that visual studio gives me. Perhaps I'm ...
0
votes
0answers
230 views
TagLibSharp and MP4 files
I'm using TagLib# v2.1.0 and it does show namespaces TagLib.MPeg and TagLib.MPeg4, but I consistently get this error with .MP4 files that I deal with -
"Box header specified a size of {0} bytes but ...
0
votes
2answers
246 views
taglib sharp id3v1 tag, question marks instead of Russian letters
I'm running following code:
TagLib.File f = TagLib.File.Create(path);
f.Tag.AlbumArtists = f.Tag.Artists = new string[] { "артист" };
f.Tag.Title = "песня";
f.Save();
Both id3v1 and id3v2 tags are ...
0
votes
1answer
340 views
Resizing ID3 tag picture
Hi i'm making a small app' that will load some .mp3 songs and resize their covers to required size in bytes.
I think the best will be to changing real resolution until it won't be less than required. ...
1
vote
1answer
648 views
How to use TagLib# to gain VideoHeader information from Video Files
I am creating a program to access information on different types of files, I have so far been successful mostly with MP3 files and am now working on the video MPG etc types.
So far I have been able ...
0
votes
1answer
367 views
taglib# cannot save tag
I try to make app which will load and edit id3 tags. I decided to use taglib for that. Everything works fine, but when i try to save edited tag it falls on IOException "The process cannot access the ...
0
votes
1answer
326 views
How to set the “Media created” date on an MPEG-4 file
I have many MPEG-4 files transcoded from various digital camera formats for which the file system modified date is correct. I'd like to set the "Media Created" tag to match. This can be done manually ...
0
votes
1answer
269 views
taglib# cannot save changes
I would like to tag some existing mp3 with taglib#.
I have the following error message:
"The process cannot access the file because it is being used by another process."
I don't know what kind of ...
1
vote
0answers
265 views
MP3 audio bye array help - c#
So I made a great demo in Flash before that utilized Sound.Extract to get audio data from an mp3 in the form of a byte array. I'm trying to port it over to C# but I'm running into a bit of a problem.
...
1
vote
1answer
698 views
How do I use TagLib-Sharp to write custom (PRIV) ID3 frames?
Specifically, I'd like to write the Windows Media Player frames, such as theWM/MediaClassPrimaryID, WM/MediaClassSecondaryID and WM/WMCollectionGroupID frames.
I'm using PowerShell, but C# would be ...
0
votes
1answer
399 views
Taglib sharp saving ONLY ID3v2
I'm new using TagLib sharp. I'm trying to save ONLY an specific version of the tag inside the file. Everytime I save the tag both ID3v1 and ID3v2 get created. Is there a way to stop this from ...
4
votes
1answer
393 views
TagLib-sharp: Reading metadata from HttpPostedFile object
User post their MP3s to my site and I would like to read the metadata from the files before they are stored in the CDN.
TagLib-Sharp seems to be library to go for this, but I can't see any way to ...
0
votes
1answer
137 views
Data Binding with TagLib#
So I'm trying to use the TagLib library with Databinding but I'm having trouble turning it into a property that is bindable. Any help is appreciated, thanks. Here is what I have so far, I don't ...
0
votes
1answer
260 views
Insert values into an Access Database that contain brackets/braces
Using taglib-sharp and OleDb, I'm attempting to index a folder of music files and store all the metadata from said files in an Access Database (I'll probably switch to SQL Compact or something later ...
1
vote
4answers
2k views
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 ...
3
votes
1answer
359 views
How to make TagLib# work on a file with the wrong extension?
I'm using TagLib# to retrieve meta data from my MP4 file. So far, so good, everything works fine, until I spotted a file with a "wrong" extension" that made LagLib# puke. I discovered this file was ...
0
votes
1answer
1k views
How can you iterate through a wpf TreeView's items, adding new items if they don't already exist and/or as children of existing items?
I'm working on a program for my dissertation that hopefully, when finished will enable you to sort music files using the tag data. At the moment I have a wpf tree view that I want to display a list of ...
2
votes
1answer
903 views
Trouble playing mp3s after id3 image edit
Due to hardware restrictions, the software we produce tries to ensure that any audio file it imports into it's library (ready to be copied onto the hardware) is an acceptable bit rate.
Recently we've ...
0
votes
1answer
354 views
How to read XingHeaders and VBRIHeaders from MP3 files using TagLib-Sharp
I need to extract the information stored in the Xing and Fraunhofer VBRI headers of MP3 files using TagLib-Sharp.
I've searched around the web for an example, looked at the source code, but it's not ...
1
vote
1answer
457 views
Where can I find a list of all audio file types supported by taglib-sharp?
I don't know why this is so hard for me to find, but I simply can't find any documentation on this. I just want to be sure I include support for all audio file types that taglib-sharp can work with ...
1
vote
2answers
1k views
Reading id3v2 frames with TagLib in Powershell
I'm trying to read a file's id3v2 tag information using the TagLib# library with Powershell.
Reading the standard tag properties is not a problem (artist, title etc.), but I'm having difficulty ...
1
vote
2answers
2k views
Having difficulties adding taglib-sharp project solution to my current vb.net solution
Hey everyone, I'm currently having difficulty adding the latest taglib-sharp solution to my current solution which contains my vb.net console project on Visual Studios 2010. Essentially I want to code ...
0
votes
2answers
1k views
Determine the length (in milliseconds) of an mp3 file in VB.net
Is there a way to get the time length of an mp3 in VB.net? I have TagLib, but it doesn't seem to have any functionality for it.
9
votes
2answers
7k views
Where can I find tag lib sharp examples?
I have been searching for ID3 editors for my music manager project. It seems that taglib sharp is the popular choice. I googled a lot and could not find any examples of using it.
Can some one point ...
2
votes
1answer
2k views
Where can I find the source code for the TagLib# library?
Some time ago on the ID3 Implementations web page I found TagLib# to be quite useful library for handling tags in audio files.
However when I recently tried to get the latest code from the ...
3
votes
2answers
1k views
Differences in length in TagLib# (C#) and TagLib (C++)
I am currently in the process of moving my C# application over to Qt / C++. I'm running into problems with lengths from TagLib. I find it odd that TagLib# returns audio durations in milliseconds, ...
1
vote
1answer
817 views
Reading ID3 tags from the web with C#
I've seen the TagLib Sharp example of how they read from a Gnome VFS, but does anyone know how or have sample code on how I can read an MP3 file from a website and get the ID3 info?
So say i have ...
1
vote
3answers
2k views
TagLib# Windows distribution? Or another good ID3 reader?
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 ...
2
votes
1answer
1k views
taglib# returns wrong duration
I'm getting the duration of an MP3 file in this way:
TagLib.File file = TagLib.File.Create(fileName);
var duration = file.Properties.Duration;
and it is consistently giving me a duration between 68 ...
4
votes
2answers
3k views
What happened to the “TagLib#” library?
What is the current status of TagLib# (TagLib sharp)?
The official homepage www.taglib-sharp.com (link removed due to the NSFW nature of the new site that's parked at that address. -BtL) doesn't ...
