You will need:
.Net framework
foobar2000 (http://www.foobar2000.org/)
COM Automation Server (see http://www.hydrogenaudio.org/forums/ind ... opic=39946 for details) download from http://foosion.foobar2000.org/0.9/foo_c ... -setup.exe
LCD Smartie

Install COM Automation Server
Put FooBarPlugin.dll, Interop.Foobar2000.dll, Interop.Foobar2000Helper.dll dlls in LCD Smartie plugins directory
Configure LCD Smartie:
select free Screen (13th in my case) and choose options:
Code: Select all
$dll(FooBarPlugin,1,name,) - foobar version
$dll(FooBarPlugin,1,activeplaylist,) - active playlist
$dll(FooBarPlugin,1,title,) - shows artist and title informations
$dll(FooBarPlugin,1,title,format) - shows title information is specified format (see titleformat_help.html in foobar directory)
$dll(FooBarPlugin,1,codec,) - Name of codec used to encode the track
$dll(FooBarPlugin,1,channels,) - Number of channels in the track
$dll(FooBarPlugin,1,bitrate,) - Bitrate of the track in kilobits per second (kbps)
$dll(FooBarPlugin,1,samplerate,) - Sample rate of the track, in Hz
$dll(FooBarPlugin,1,position,) - Length of the track, formatted as [HH:]MM:SS
$dll(FooBarPlugin,1,position,seconds) - Length of the track as seconds
$dll(FooBarPlugin,1,length,) - Current playback time, formatted as [HH:]MM:SS
$dll(FooBarPlugin,1,length,seconds) - Current playback time as seconds
first line:
Code: Select all
$dll(FooBarPlugin,1,codec,) $dll(FooBarPlugin,1,channels,) $dll(FooBarPlugin,1,bitrate,) $dll(FooBarPlugin,1,samplerate,) $dll(FooBarPlugin,1,position,)/$dll(FooBarPlugin,1,Length,)
Code: Select all
$dll(FooBarPlugin,1,title,)

Enjoy!