Random header image... Refresh for more!

Archive for the ‘Media’ Category

Scripting Mp3 Tags through PowerShell

Icon Written by Niklas Goude on September 4, 2009 – 9:24 pm

Structuring up you Music Library can be a rather time consuming task. You can however script this rather easily through PowerShell using the taglib-sharp library.

Let’s start off by downloading the Tag-Lib Library
Next, We have to Load the Assembly from PowerShell in order to access the Classes.

PS > $TagLib = “C:\taglib\Libraries\taglib-sharp.dll”

PS > [System.Reflection.Assembly]::LoadFile($TagLib)

GAC [...]

Tags:

Windows Media Player, MP3 and PowerShell

Icon Written by Niklas Goude on January 20, 2009 – 12:13 am

Let’s have some fun with MediaPlayer and MP3 Files. In this example, we’ll look at setting Attributes on MP3 files. First off, Let’s look at the files we want to set Attributes on:

PS > ls | select Name

Name
—-
01 – The Wicker Man.mp3
02 – Ghost Of The Navigator.mp3
03 – Brave New World.mp3
04 – Blood Brothers.mp3
05 – [...]

Tags: