INTERACT FORUM

Windows => Plug-in Development => Topic started by: Messiahs on April 26, 2008, 07:19:41 pm

Title: streaming and MJFile
Post by: Messiahs on April 26, 2008, 07:19:41 pm
how can i get values like Artist and Songname for a streaming file ?

MC shows this informations... but when i use :

Code: [Select]
MJFile = MJCurPlaylist.GetFile(posInCurPlaylist)
artist = MJFile.Artist

'artist' is empty.

Cheers,
Markus



Title: Re: streaming and MJFile
Post by: Matt on April 28, 2008, 11:43:12 am
The issue is that the playback file (radio station) and current broadcasted file have different tag values.

The SDK only exposes the radio station values.

We used to simply switch the radio station to the current track information during playback, but this caused other issues -- like the file showing up incorrectly in a library view.

Title: Re: streaming and MJFile
Post by: Messiahs on April 28, 2008, 03:54:22 pm
Hi Matt,

thanks for your explanation...