INTERACT FORUM
More => Old Versions => Media Center 12 (Development Ended) => Topic started by: radio1 on April 05, 2008, 10:46:31 am
-
Hi,
I've used MC12 for a long while. But I have never used playlists...
I have over 7,000 mp3 files. Is there an easy way to generate playlists in MC12 for all those albums?
I have just bought a Roku SoundBridge m500, and I am starting to realize I may need to generate playists for easier surfing on the device. Some people over at the Roku forums mentioned Firefly + iTunes.
But I don't own an iPod, nor do I want to a market popping up when I want chill out with music. Furthermore, there are a lot of horror stories of how iTunes screws your metadata and library structure you do have.
-
Not really sure I understand what you mean, do you just want a playlist of every album?
If you do, you could use Mr ChriZ' scripting plugin:
http://yabb.jriver.com/interact/index.php?topic=38693.0
and this script, which does exactly that:
using System;
//css_reference MediaCenter.dll;
class Script : MarshalByRefObject
{
public void Init(MediaCenter.MCAutomation mediaCenterInterface)
{
//Get a set of files with one track for every album (add to the search string if not all albums required)
MediaCenter.IMJFilesAutomation albums = mediaCenterInterface.Search("[Media Type]=Audio ~nodup[Album],[Album Artist (Auto)]");
//for each album's track
for (int albumCounter = 0; albumCounter < albums.GetNumberFiles() ; ++albumCounter)
{
String album = albums.Get(albumCounter,"Album"); //get album's artist
String artist = albums.Get(albumCounter,"Album Artist (Auto)"); //get album's name
//Create a playlist
MediaCenter.IMJPlaylistAutomation playlist = mediaCenterInterface.GetPlaylists().CreatePlaylist("Albums\\",artist + " - " + album);
//Get all files in that album by that album artist.
MediaCenter.IMJFilesAutomation tracks = mediaCenterInterface.Search("album=[" + album + "] autoalbumartist=[" + artist + "]");
//Add each track from that album into the playlist
for(int trackCounter = 0; trackCounter < tracks.GetNumberFiles(); ++trackCounter)
{
playlist.AddFile(tracks.Get(trackCounter,"filename"),trackCounter);
}
}
}
}
-
Thanks eba!
I am sorry I took so long to reply. After fiddling around with the tagging feature for an afternoon, I figured out how to start generating playlists.