SilverJulke Plugin - Current Song Export

The forum for designers and developers.
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
User avatar
rugbykid
Posts: 37
Joined: 9. Feb 08, 22:33
Location: Kalamazoo
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

SilverJulke Plugin - Current Song Export

Postby rugbykid » 17. Feb 08, 18:04

Hi All,

I'm new to SilverJuke and the SDK, but am looking forward to writing a few plug-ins or modules.

I want to write a plugin that takes the current song information and exports it to a text file (the same one, just keeps overwriting). With that text file I would then write a plug-in for the Instant Messaging Client Pidgin to read that text file and change my status message based on it.

Has anyone made a SJPI similar to this? It doesn't seem like it would be too hard, I'm just not familiar with it yet.

Any feedback or advice for a first time SJ coder would be appreciated!

User avatar
rugbykid
Posts: 37
Joined: 9. Feb 08, 22:33
Location: Kalamazoo
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby rugbykid » 17. Feb 08, 20:58

I ended up getting what I wanted out of a fairly simple script. I'm sure no one would have trouble coming up with this but here is my code:

player.onTrackChange = TrackChangeNotificationHandler;

var location;
var browse;


function TrackChangeNotificationHandler()
{
var cur = player.queuePos;
var info = player.getArtistAtPos(cur) +
" - " +
player.getTitleAtPos(cur) +
" (" +
player.getDurationAtPos(cur) +
")";

if( player.isPlaying()){
location = "c:/currentlyplaying.txt";
File.remove(location);
var file = new File(location);
file.pos = 0;
file.write(info);
file.flush();
}
}


If you see anything I may be doing wrong or suggestions to make it better, please let me know.

On to the Pidgin SDK to see what I can do there...

User avatar
rugbykid
Posts: 37
Joined: 9. Feb 08, 22:33
Location: Kalamazoo
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby rugbykid » 17. Feb 08, 21:01

Okay,
I found a GAIM plug-in that did what I wanted. Unfortunately it doesnt work with the new GAIM, titled PIDGIN.

To get this to work I downloaded GAIM 2.0.0 BETA 2 from
http://www.oldapps.com/download_old_version_gaim.php

Also the plug-in Auto-Profile from http://hkn.eecs.berkeley.edu/~casey/autoprofile/

Just install the GAIM client and setup the plugin to look for the file specified in the above code. It will update your status or profile every 1minute to update with your current track information.

hope someone out there finds this useful!

User avatar
rugbykid
Posts: 37
Joined: 9. Feb 08, 22:33
Location: Kalamazoo
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby rugbykid » 17. Feb 08, 21:08

To see it in use, add BobsJukeBox to your AIM buddylist.

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby Guest » 17. Feb 08, 21:50

Thank you for your code, I will have a look at it. Also I am curious about your next "few plug-ins or modules" :-D

Regards,
Chris.

locka
Posts: 18
Joined: 4. Jun 07, 21:13
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby locka » 3. Apr 08, 18:48

So where do you put this in side skin I'm lost?

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby Guest » 3. Apr 08, 20:19

<skin>
<script>

// your script here.

</script>
<layout ...>
...
</layout>
</skin>

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby Guest » 3. Apr 08, 22:19

sorry to be thick and that will run every time a track is changed

Guest
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Re: SilverJulke Plugin - Current Song Export

Postby Guest » 4. Apr 08, 02:12

fixed thanks for the help


[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/vendor/twig/twig/lib/Twig/Extension/Core.php on line 1266: count(): Parameter must be an array or an object that implements Countable

Return to “Developer Network”