Skip to content

Instantly share code, notes, and snippets.

@gfody
gfody / stations.ps1
Created January 29, 2017 03:29
Import Digitally Imported and SomaFM radio stations into MusicBee
$doc = [xml]'<opml version="2.0"><body/></opml>'
$body = $doc.selectSingleNode('//body')
# somafm.com channels..
foreach($ch in (irm http://somafm.com/channels.xml).selectNodes('//channels/*')) {
$x = $doc.createElement('outline')
$x.setAttribute('text', "SomaFM - $($ch.title.innerText)")
$x.setAttribute('description', $ch.description.innerText)
$x.setAttribute('category', "$($ch.genre)/AAC/128k/")
$x.setAttribute('type', 'link')