Creating Lambda Extension Methods

by David Kiff 18. March 2009 20:08

There are lots of blogs on Extension Methods and Lambda Expressions; however I haven’t seen many blogs looking at combining the two! This is the aim of this Article. I will replicate the Where extension method for IEnumerable<T> to demonstrate an example. More...

Tags:

C#-3.0

Reading ID3 V1 Tags from MP3 Files

by David Kiff 3. March 2009 19:06

What is ID3 V1?

ID3 is a specification that describes how users can append music related metadata to a file (commonly MP3 Files).  The metadata includes:

  • Title
  • Artist
  • Album
  • Track number
  • Genre
  • Comment
  • Year

The ID3 tag occupies the last 128 bytes of the music file and starts with the string "TAG".  Media players typically ignore the tag when the file is played, however some older players play a small burst of static. More...

Tags:

ID3 | MP3