Media Player Classic Plugin for LCD Smartie
Posted: May 9th, 2007, 12:32 am
use it to display the "now playing" info from media player classic
this is my first plugin (downloaded lcd smartie just 2 days ago), so bugs may exists...
usage:
$dll(mpcplugin,1,param1,1)
where param1 can be one of the following:
isactive - return 1 if mpc is playing or paused, 0 if stopped or closed (for changing the lcd smartie screen)
title - gets the file title (usually the file name)
author - gets the file author (is exists on tag)
desc - gets the file description
position - gets the current position (for example: 0:01:23 / 1:30:00)
status - returns "playing","paused", or "stopped"
example:
create a disabled sticky screen with the following info:
$dll(mpcplugin,1,title,1) $dll(mpcplugin,1,author,1)
$dll(mpcplugin,1,position,1)
$dll(mpcplugin,1,status,1)
in the action tab, create 2 rules:
$dll(mpcplugin,1,isactive,1) = 1 GotoScreen(yourScreenNumber)
$dll(mpcplugin,1,isactive,1) = 0 NextScreen
this is my first plugin (downloaded lcd smartie just 2 days ago), so bugs may exists...
usage:
$dll(mpcplugin,1,param1,1)
where param1 can be one of the following:
isactive - return 1 if mpc is playing or paused, 0 if stopped or closed (for changing the lcd smartie screen)
title - gets the file title (usually the file name)
author - gets the file author (is exists on tag)
desc - gets the file description
position - gets the current position (for example: 0:01:23 / 1:30:00)
status - returns "playing","paused", or "stopped"
example:
create a disabled sticky screen with the following info:
$dll(mpcplugin,1,title,1) $dll(mpcplugin,1,author,1)
$dll(mpcplugin,1,position,1)
$dll(mpcplugin,1,status,1)
in the action tab, create 2 rules:
$dll(mpcplugin,1,isactive,1) = 1 GotoScreen(yourScreenNumber)
$dll(mpcplugin,1,isactive,1) = 0 NextScreen