Difference between revisions of "Iron Curtain"

From SlugWiki
Jump to: navigation, search
 
Line 1: Line 1:
 
==Overview==
 
==Overview==
 
An LED display built out of LED boards from some dead guy at TEP.
 
An LED display built out of LED boards from some dead guy at TEP.
 +
 +
==XMMS Plugin==
 +
 +
Use the functions in <code>xmms-1.2.11/libxmms/xmmsctrl.h</code> to get data other than frequency and PCM data. Useful functions include:
 +
<pre>
 +
gint xmms_remote_get_playlist_length(gint session);
 +
gchar *xmms_remote_get_playlist_file(gint session, gint pos);
 +
gchar *xmms_remote_get_playlist_title(gint session, gint pos);
 +
gint xmms_remote_get_output_time(gint session);
 +
</pre>
  
 
[[Category: Projects]]
 
[[Category: Projects]]

Revision as of 03:20, 29 February 2008

Overview

An LED display built out of LED boards from some dead guy at TEP.

XMMS Plugin

Use the functions in xmms-1.2.11/libxmms/xmmsctrl.h to get data other than frequency and PCM data. Useful functions include:

gint xmms_remote_get_playlist_length(gint session);
gchar *xmms_remote_get_playlist_file(gint session, gint pos);
gchar *xmms_remote_get_playlist_title(gint session, gint pos);
gint xmms_remote_get_output_time(gint session);