Questions tagged [taglib-sharp]

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.

130 questions
0
votes
1 answer

Listing extended tags in files with Tagliib

I am working with .flac audio files that use extended tags for a bit of magic. There is a tag called ReleaseGuid. I want to be able to list the contents or create the tag if it doesn't exist. I have done the prerequisite beating of my head against…
0
votes
0 answers

TagLib.Tag always empty on Windows Form project

Well, I'm making a simple winform to create a text file containing paths to various songs. It's just a simplistic playlist for a visualizer/audio player that I've been working on (using XNA, C#, and Bass.Net). I'd like to use TagLib access and…
Keswiik
  • 1
  • 1
0
votes
0 answers

TagLib-Sharp missing references: gdk & glib

I'd like to rebuild Taglib.dll from source code but in the solution there are some references missing. I tried to re-add them with NuGet and it worked for some, but gdk-sharp and glib-sharp are posing problems: Gdk doesn't show up in "manage NuGet…
progon
  • 1
  • 1
0
votes
1 answer

Implementing taglib# into a c# music player

I'm making a music player of sorts using c# and I've gotten songs to play/pause, fast forward/rewind and etc functions. The only thing I'm having trouble finding a solution to is displaying the song name, artist, album, and album art on a…
Karim O.
  • 1,325
  • 6
  • 22
  • 36
0
votes
3 answers

UnauthorizedAccessException using TabLib - Windows 8 App

I am attempting to us TagLib-Sharp to read metadata from mp4 videos but get an UnauthorizedAccessException. I'm using the FileOpenPicker and have made the proper declarations. Any ideas? Thanks in advance. Error: "An exception of type…
0
votes
2 answers

Issue trying to use a Lambda expression

I want to code a generic function to set a tag field of a music file, I'm using "TagLib Sharp" library, I'm trying to code something that can be tittled as "TagLib Sharp Helper Class" To call the procedure I want to use some syntax like this to set…
ElektroStudios
  • 19,105
  • 33
  • 200
  • 417
0
votes
1 answer

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 windows), 2. By extracting the video name to get the…
Lynx
  • 259
  • 1
  • 9
  • 26
0
votes
2 answers

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 set, but only id3v2 tag is set properly. v1 tag…
VladL
  • 12,769
  • 10
  • 63
  • 83
0
votes
1 answer

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. But i really don't know how to it or how to save…
hradecek
  • 2,455
  • 2
  • 21
  • 30
-1
votes
1 answer

How to change BitsPerSample of wav file using Taglib#?

I have sample wav file.I want to change BitsPerSample of it. I have tried with Taglib#. I have changed source code of taglib to make BitsPerSample editable. it's showing as changed in file.Properties.BitsPerSample Field while debugging but when I…
1 2 3
8
9