This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#301 2011-12-07 13:08:48

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

456bingo123 wrote:

fanofcena wrote:

456bingo123 wrote:


My dad has a few weeks of non-stop music. Also, you wouldn't need that many mp3's. You often hear the same song played over the radio in a year.

With my vipersounds CDN i have 2years of non stop music 1.2 terrabytes :3  lol  pretty much my music cannot end!

Well, there's a single song that's being played now, that a machine is playing that will last 1000 years! Longplayer.org   Is your vipersounds CDN sort of like that?

nope it has 1.2terrabytes of differnt songs at 320kbps bitrate and 48khz .. its for radio station  smile  [ all music on that server is legal]


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#302 2011-12-07 13:11:59

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

btw my code fixes your Media player requirement  tongue  .. it can get "meta" data pretty easily..


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#303 2011-12-07 13:29:07

Dawgles
Scratcher
Registered: 2011-07-29
Posts: 100+

Re: SCRATCH FORUMS HOLIDAY RADIO

fanofcena wrote:

btw my code fixes your Media player requirement  tongue  .. it can get "meta" data pretty easily..

All it does is serve as a proxy. It doesn't extract the information directly (or process it at all).
What we need is a php file that extracts the stream information from the server page and produces an XML file that can be read with XMLHttpRequest (ajax). Someone needs to be streaming so we know what strings to make the php script look for.

The media player request is easy to fulfill, the <audio> tag does the job nicely.

Offline

 

#304 2011-12-07 14:48:15

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

Dawgles wrote:

fanofcena wrote:

btw my code fixes your Media player requirement  tongue  .. it can get "meta" data pretty easily..

All it does is serve as a proxy. It doesn't extract the information directly (or process it at all).
What we need is a php file that extracts the stream information from the server page and produces an XML file that can be read with XMLHttpRequest (ajax). Someone needs to be streaming so we know what strings to make the php script look for.

The media player request is easy to fulfill, the <audio> tag does the job nicely.

Are u lost if u can load the file as editable dom on server u can get ny data out of it whatsoever u want... And due to security ur ffox will nt allow u to edit it via js i tried earlier bt scast nd icecast both put headers on the output so u cant edit it .. On chrome it could b worked around bt ffox fail nd if u allow me i can make u 1 full code


auxio tag hmmmm try testing ogg playback on chrome or mp3 on ffox .. The only reason i suggstd jplayer as it makes sure media is played under ny condition

Last edited by fanofcena (2011-12-07 14:53:37)


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#305 2011-12-07 14:53:36

stevetheipad
Scratcher
Registered: 2011-08-06
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

I am interested in participating. I would be happy to interview or get interviewed.


http://i.imgur.com/0x8ia.jpg
gone

Offline

 

#306 2011-12-07 17:52:41

sportsdude6
Scratcher
Registered: 2011-07-25
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

what about my sugestion?

Offline

 

#307 2011-12-07 18:01:11

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

sportsdude6 wrote:

what about my sugestion?

Where?


Posts: 20000 - Show all posts

Offline

 

#308 2011-12-07 18:08:36

Dawgles
Scratcher
Registered: 2011-07-29
Posts: 100+

Re: SCRATCH FORUMS HOLIDAY RADIO

fanofcena wrote:

Dawgles wrote:

fanofcena wrote:

btw my code fixes your Media player requirement  tongue  .. it can get "meta" data pretty easily..

All it does is serve as a proxy. It doesn't extract the information directly (or process it at all).
What we need is a php file that extracts the stream information from the server page and produces an XML file that can be read with XMLHttpRequest (ajax). Someone needs to be streaming so we know what strings to make the php script look for.

The media player request is easy to fulfill, the <audio> tag does the job nicely.

Are u lost if u can load the file as editable dom on server u can get ny data out of it whatsoever u want... And due to security ur ffox will nt allow u to edit it via js i tried earlier bt scast nd icecast both put headers on the output so u cant edit it .. On chrome it could b worked around bt ffox fail nd if u allow me i can make u 1 full code


auxio tag hmmmm try testing ogg playback on chrome or mp3 on ffox .. The only reason i suggstd jplayer as it makes sure media is played under ny condition

"Are u lost" --- ...seriously?

Ogg works on all browsers sans safari and IE.
Loading the dom isn't even half of the battle, it's just loading a page. Most of the work will have to go into extracting the information from the page and placing it in the readable format veggie has set up at http://scratchforums.tk/radio/

"Now Playing:
"Nothing" by the Nothings"

This element's inner HTML will be written to; that's the easy part. The information needs to be extracted from the "bloat" which is the design of the icecast server. I can't check right now (server's down), but if it's in a DIV with an id like "meta-artist" then it may be easier than I expect. Then the info can be passed to a variable and written to the page HTML.

Last edited by Dawgles (2011-12-07 18:09:16)

Offline

 

#309 2011-12-07 18:16:14

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

Dawgles wrote:

fanofcena wrote:

Dawgles wrote:


All it does is serve as a proxy. It doesn't extract the information directly (or process it at all).
What we need is a php file that extracts the stream information from the server page and produces an XML file that can be read with XMLHttpRequest (ajax). Someone needs to be streaming so we know what strings to make the php script look for.

The media player request is easy to fulfill, the <audio> tag does the job nicely.

Are u lost if u can load the file as editable dom on server u can get ny data out of it whatsoever u want... And due to security ur ffox will nt allow u to edit it via js i tried earlier bt scast nd icecast both put headers on the output so u cant edit it .. On chrome it could b worked around bt ffox fail nd if u allow me i can make u 1 full code


auxio tag hmmmm try testing ogg playback on chrome or mp3 on ffox .. The only reason i suggstd jplayer as it makes sure media is played under ny condition

"Are u lost" --- ...seriously?

Ogg works on all browsers sans safari and IE.
Loading the dom isn't even half of the battle, it's just loading a page. Most of the work will have to go into extracting the information from the page and placing it in the readable format veggie has set up at http://scratchforums.tk/radio/

"Now Playing:
"Nothing" by the Nothings"

This element's inner HTML will be written to; that's the easy part. The information needs to be extracted from the "bloat" which is the design of the icecast server. I can't check right now (server's down), but if it's in a DIV with an id like "meta-artist" then it may be easier than I expect. Then the info can be passed to a variable and written to the page HTML.

Unfortunately it just keeps it in a styled list like this

Code:

<td>Peak Listeners:</td>
<td class="streamdata">0</td>
</tr>
<tr>
<td>Stream Genre:</td>
<td class="streamdata">Post-Hipster Alternarap Metal Indie Thrash Twee</td>
</tr>
<tr>
<td>Stream URL:</td>
<td class="streamdata"><a target="_blank" href="stream.ogg">stream.ogg</a></td>
</tr>
<tr>
<td>Current Song:</td>
<td class="streamdata">Dictionary Attack - How Do I Live</td>
</tr>
</table>
</div>
<div class="roundbottom"><img src="/corner_bottomleft.jpg" class="corner" style="display: none"></div>
</div>

Posts: 20000 - Show all posts

Offline

 

#310 2011-12-07 18:24:34

sportsdude6
Scratcher
Registered: 2011-07-25
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

veggieman001 wrote:

sportsdude6 wrote:

what about my sugestion?

Where?

189th post

Offline

 

#311 2011-12-07 18:25:51

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

JJROCKER wrote:

456bingo123 wrote:

sportsdude6 wrote:

Suggestion- tell scratchers what other religions do instead of xmas? Like jews do hannukah.

That's a good idea. Veggie needs to get on  hmm

Hold on... You basically just said every scratcher celebrates christmas...


Posts: 20000 - Show all posts

Offline

 

#312 2011-12-07 18:27:13

sportsdude6
Scratcher
Registered: 2011-07-25
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

veggieman001 wrote:

JJROCKER wrote:

456bingo123 wrote:


That's a good idea. Veggie needs to get on  hmm

Hold on... You basically just said every scratcher celebrates christmas...

No I didnt. Wat do ya mean?

Offline

 

#313 2011-12-07 18:27:34

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

I may give a little overview over all of the holidays this winter that I know about, though.


Posts: 20000 - Show all posts

Offline

 

#314 2011-12-07 18:27:43

cocolover76
Scratcher
Registered: 2011-10-09
Posts: 500+

Re: SCRATCH FORUMS HOLIDAY RADIO

veggieman001 wrote:

JJROCKER wrote:

456bingo123 wrote:


That's a good idea. Veggie needs to get on  hmm

Hold on... You basically just said every scratcher celebrates christmas...


http://i.imgur.com/HfEPZ.gifhttp://i.imgur.com/pvKb6.png

Offline

 

#315 2011-12-07 18:35:40

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

Give me credit for the name  tongue
Also, you can interview me.


the the the the the

Offline

 

#316 2011-12-07 18:37:11

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

jslomba wrote:

Give me credit for the name  tongue
Also, you can interview me.

Uh... it's a generic name.
Okay I may.
I will sort out interviewing this weekend, I swear.


Posts: 20000 - Show all posts

Offline

 

#317 2011-12-07 19:46:09

JJROCKER
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

sportsdude6 wrote:

veggieman001 wrote:

JJROCKER wrote:

Hold on... You basically just said every scratcher celebrates christmas...

No I didnt. Wat do ya mean?

Yes you did.  tongue  You said that we should tell scratchers what other religions do instead of xmas. So you are assuming that every Scratcher celebrates Christmas and we should tell everyone what other people do?

That's basically what you said  tongue

Anyway, veggie, what did I miss? Anything new?

Last edited by JJROCKER (2011-12-07 19:46:31)


http://www.blocks.scratchr.org/API.php?action=random&amp;return=image&amp;link1=http://img255.imageshack.us/img255/3491/signature1y.jpg&amp;link2=http://img577.imageshack.us/img577/5272/signature1sx.jpg&amp;link3=http://img4.imageshack.us/img4/8514/signature1et.jpg&amp;link4=http://i.imgur.com/POEpQyZ.png&amp;link5=http://img163.imageshack.us/img163/4640/jjrockerfinal.jpg

Offline

 

#318 2011-12-07 19:47:17

Laternenpfahl
Scratcher
Registered: 2011-06-24
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

Featuring it in my new sig


http://i46.tinypic.com/6yd4c0.png

Offline

 

#319 2011-12-07 19:51:58

Dawgles
Scratcher
Registered: 2011-07-29
Posts: 100+

Re: SCRATCH FORUMS HOLIDAY RADIO

Darn. Is it possible to alter output with icecast?

Last edited by Dawgles (2011-12-07 19:52:39)

Offline

 

#320 2011-12-07 20:01:55

kimmy123
Scratcher
Registered: 2008-05-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

Can I make a music piece for it?  big_smile

Last edited by kimmy123 (2011-12-07 20:02:32)


http://i.imgur.com/Mg3TPIE.pnghttp://i.imgur.com/rgyzXV5.pnghttp://i.imgur.com/685FKVd.pnghttp://24.media.tumblr.com/8678e33865664f328e1654109679cb92/tumblr_mm1qu3jGD71s8caito3_r1_250.gif

Offline

 

#321 2011-12-07 20:05:13

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

Dawgles wrote:

Darn. Is it possible to alter output with icecast?

Not that I know of. I'm going to look some stuff up.

Sure, kimmy.
JJROCKER, not really.


Posts: 20000 - Show all posts

Offline

 

#322 2011-12-07 20:09:49

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

I discovered this.


Posts: 20000 - Show all posts

Offline

 

#323 2011-12-07 20:17:01

kimmy123
Scratcher
Registered: 2008-05-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

veggieman001 wrote:

Sure, kimmy.

Nvm.  yikes


http://i.imgur.com/Mg3TPIE.pnghttp://i.imgur.com/rgyzXV5.pnghttp://i.imgur.com/685FKVd.pnghttp://24.media.tumblr.com/8678e33865664f328e1654109679cb92/tumblr_mm1qu3jGD71s8caito3_r1_250.gif

Offline

 

#324 2011-12-07 20:18:09

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: SCRATCH FORUMS HOLIDAY RADIO

kimmy123 wrote:

veggieman001 wrote:

Sure, kimmy.

Nvm.  yikes

-_-


Posts: 20000 - Show all posts

Offline

 

#325 2011-12-07 20:21:37

Dawgles
Scratcher
Registered: 2011-07-29
Posts: 100+

Re: SCRATCH FORUMS HOLIDAY RADIO

veggieman001 wrote:

I discovered this.

That would be really helpful.

Offline

 

Board footer