Post Reply 
AnimeNFO PSP Radio player
Author Message
Syfe
Blackened Rose Hero.

Posts: 3,612.4889
Threads: 77
Joined: 4th May 2007
Reputation: -5.01013
E-Pigs: 54.0003
Offline
Post: #1
AnimeNFO PSP Radio player
Found by Yoyo. posted by Syfe.

Quote:the AnimeNFO PSP Radio player is a PSP application to recieve your favourite Anime/Jpop/Jrock Radio channel on your PSP.

Features:
It displays the artist, title, and album of the currently playing song and refreshes this information every 10 seconds without interrupting the music.
and I've included a little "Save" button which saves the current song information to the memorystick in BMP format

Requirements:
a PSP (firmware 5.00 and above recommended, works on both official and custom firmwares)
An active Wifi hotspot or wireless Router nearby for your PSP to connect through.

How to use:
Click the link at the bottom of the page to download the Radio Player
make sure it saves to ms0:\PSP\RADIOPLAYER\ or move it there through the USB connection
go to the internet section of the XMB(PSP main menu) and select "internet Radio"
make sure your wifi is switched on, and a nearby wifi connection is configured on your PSP
start the AnimeNFO Radio player by selecting it's icon with the X button(you can perform other actions, such as visiting the AnimeNFO website by pressing the triangle button)
connect to your Wifi hotspot or Router
Click yes when you are asked if the plugin can run
and enjoy the music
if a good song comes by and you wish to save it's name so you can find it again click the "save" button
doing so will save the current screen to a .bmp file in the ms0:\picture\radioplayer screenshot folder on your memorystick

if you enjoy the music, support the people running this radio channel by donating at http://AnimeNFO.com/Radio

Source

a possible dl link here.

Rip Signature.
[Image: sig.gif]
05/09/2009 01:22 PM
Find all posts by this user Quote this message in a reply
LookingForKids
Able One

Posts: 116.1610
Threads: 19
Joined: 4th Feb 2009
Reputation: -0.51458
E-Pigs: 8.7455
Offline
Post: #2
RE: AnimeNFO PSP Radio player
i want fm 104 <<<
05/09/2009 01:32 PM
Find all posts by this user Quote this message in a reply
amoonrabbit
random one
Fractal Insanity

Posts: 783.3699
Threads: 48
Joined: 9th Mar 2009
Reputation: -3.19624
E-Pigs: 31.8205
Offline
Post: #3
RE: AnimeNFO PSP Radio player
awesome, i love this station

06/09/2009 11:12 AM
Visit this user's website Find all posts by this user Quote this message in a reply
zefie
Paradigmatic Apprentice

Posts: 45.2708
Threads: 0
Joined: 13th Feb 2008
Reputation: 2.42214
E-Pigs: 2.4550
Offline
Post: #4
RE: AnimeNFO PSP Radio player
It has been a while since I messed with the radioplayer plugin script code but didn't it just have a function to update when the stream metadata updates? Why refresh every 10 seconds?

06/09/2009 01:19 PM
Visit this user's website Find all posts by this user Quote this message in a reply
thedicemaster
Existential Entity

Posts: 11.2840
Threads: 0
Joined: 6th Sep 2009
Reputation: 0
E-Pigs: 1.3426
Offline
Post: #5
RE: AnimeNFO PSP Radio player
zefie Wrote:It has been a while since I messed with the radioplayer plugin script code but didn't it just have a function to update when the stream metadata updates? Why refresh every 10 seconds?

for some reason i couldn't get the PSP to capture that metadata through the functions intended for that, and from what I've seen it just throws all info on a single line instead of title, artist, and album on a separate line.

i tried to find sony's way of capturing that info off animeNFO, but in that huge mess of a radiocore.js the best i could figure out was that they don't just use sysRadioGetContentMetaInfo() or sysRadioGetStreamTitle()

in the end i just decided to pull the info straight from the AnimeNFO now-playing page.(their webmaster was kind enough to tell me a way to grab some of that info off that page)
(This post was last modified: 06/09/2009 01:38 PM by thedicemaster.)
06/09/2009 01:34 PM
Find all posts by this user Quote this message in a reply
psphkkr4u15
Paradigmatic Entity

Posts: 154.4080
Threads: 19
Joined: 5th Aug 2009
Reputation: -2.04707
E-Pigs: 18.0730
Offline
Post: #6
RE: AnimeNFO PSP Radio player
it looks great umm...

              click this sig to see my site!!
[Image: halloweensig-1.png]
06/09/2009 08:36 PM
Visit this user's website Find all posts by this user Quote this message in a reply
feinicks
One day... we Fly...

Posts: 6,124.6050
Threads: 531
Joined: 27th Mar 2008
Reputation: 2.35695
E-Pigs: 210817.3958
Offline
Post: #7
RE: AnimeNFO PSP Radio player
Razgriz375 Wrote:awesome, i love this station

◄◄••• 天使たちの夢か? •••►►

[Image: ewualizer.gif]
My works!
06/09/2009 09:29 PM
Find all posts by this user Quote this message in a reply
zefie
Paradigmatic Apprentice

Posts: 45.2708
Threads: 0
Joined: 13th Feb 2008
Reputation: 2.42214
E-Pigs: 2.4550
Offline
Post: #8
RE: AnimeNFO PSP Radio player
thedicemaster Wrote:
zefie Wrote:It has been a while since I messed with the radioplayer plugin script code but didn't it just have a function to update when the stream metadata updates? Why refresh every 10 seconds?

for some reason i couldn't get the PSP to capture that metadata through the functions intended for that, and from what I've seen it just throws all info on a single line instead of title, artist, and album on a separate line.

i tried to find sony's way of capturing that info off animeNFO, but in that huge mess of a radiocore.js the best i could figure out was that they don't just use sysRadioGetContentMetaInfo() or sysRadioGetStreamTitle()

in the end i just decided to pull the info straight from the AnimeNFO now-playing page.(their webmaster was kind enough to tell me a way to grab some of that info off that page)

Code:
1
2
3
4
5
6
7
8
9
10
11
12
var pspMetaData;
var pspMetaDataNew;

function updateStreamTitle() {
	var pspMetaDataNew; = psp.sysRadioGetContentMetaInfo (1); // Save artist/song metadata into var
	if (pspMetaDataNew != pspMetaData) { // check against old metadata
		// this part runs if the metadata just changed
		pspMetaData = pspMetaDataNew; // Update old metadata;
		getInfoFromAnimeNFO(); // your function to get data from AnimeNFO server.
	}
        setTimeout ('updateStreamTitle()', 1000); // run this every 1 second, but we wont poll AnimeNFO's server until the metadata changes. This will also update the title quicker when the song DOES change.
}


some other useful stuff:

Code:
1
2
3
4
5
6
psp.sysRadioGetContentMetaInfo (1); // Artist - Title
stationName = psp.sysRadioGetStreamTitle (0); // Station Name
psp.sysRadioGetBitRate () / 1000; // Bitrate in kbits after division
psp.sysRadioGetSamplingRate () / 1000; // Frequency in kHz after division

psp.sysRadioGetStreamBufferLevel (); // buffer level in percent


Sorry, just picky about radio server resources. I used to run my own station, and currently I'm with kawaii-radio, so I know a thing or two about trying to save resources. Hitting the server needlessly every 10 seconds (so lets say 100 psps are using it, that's over 600 hits a minute) runs up the bandwidth, apache memory usage, mysql cpu usage, ect. :P


(This post was last modified: 06/09/2009 10:26 PM by zefie.)
06/09/2009 10:20 PM
Visit this user's website Find all posts by this user Quote this message in a reply
thedicemaster
Existential Entity

Posts: 11.2840
Threads: 0
Joined: 6th Sep 2009
Reputation: 0
E-Pigs: 1.3426
Offline
Post: #9
RE: AnimeNFO PSP Radio player
have you tested that with AnimeNFO?
psp.sysRadioGetContentMetaInfo  and psp.sysRadioGetStreamTitle always returned nothing for me on AnimeNFO.

also, for me the current formatting is quite important. and i also need the Album listed.
07/09/2009 12:50 AM
Find all posts by this user Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)

 Quick Theme: