Radio Streams

Good online radio streams. Hidden ones, or just the one you sync with it.

I have some attached.
First one is a collection of "hacker" public radio servers. Americans...
The second one is a radio from my country Radio Zu, pretty good if you understand romanian. They make phone pranks, discuss multiple social problems, and have the latest music.
The last one is a radio from the winamp list. Good old music, my favorite.

Post your favorites if you have one.
 

Attachments

  • Radio.zip
    1.2 KB · Views: 243
Does anyone know of a good public radio where a) they speak english and b) discuss interesting computer-sciency stuff?
 
john_shadow said:
That "hacking" radio I included has sometimes some cool stuff. I heard them once discussing compiling chromium.
Also: Google science dir
Also: Can search for here

Tell us if you find something good.

I tuned in twice the other day to that "hacking" radio and the first time, they were discussing something about restaurants and the second time there were two guys and a girl going on and on about pirates vs zombies and that emo vampire from twilight. I felt my intelligence going down just by listening to that :\

These latest links are very good, didn't know you could search radios with Google as well. I will let you know if I find any good sciency radio stations!
 
SirDice said:
Intergalactic FM if you're into techno/electro.

Nice one, though I usually end up listening to the fourth channel after a while, because it is much closer to my noisy and cranky taste. It just played Joy Divison, My Bloody Valentine and Black Flag back to back. That's more like me. The first channel is nice, but I tend to get fidgety after a while with the bleep-kloink-poing stuff ;)
 
I have 4 computers here that I use.
I listen to radio on my laptop which runs vista, using winamp.
Speaking about music, a friend of mine requested a bishoujo game from me(Saya no Uta) and I ripped the OST out of it some time ago. It has killer tracks in my opinion, I uploaded 2 of them for you here.
 
Lately I've been digging Limbik Frequencies. Additionally a nice radio aggregator is Filter Music.

And I wrote a minimal script for selecting between my favourite radio stations and loading them into mplayer:

Code:
#!/bin/sh

exec 3>&1

CHOICE=$( dialog --title "Internet Radio" --menu "Choose Station" 24 80 18 \
	IFM "Intergalactic FM #1" \
	BD "Bass Drive" \
	LF "Limbik Frequencies" \
	SCH "Soma FM Cliqhop" \
	CT "Cape Talk" \
	2>&1 >&3 )

exec 3>&-

if [ $? -ne 0 ]; then exit 0; fi

case ${CHOICE} in
IFM)
	mplayer http://soek:8001/1
	;;
BD)
	mplayer http://petelo.streams.bassdrive.com:80
	;;
LF)
	mplayer http://205.188.215.225:8018/listen.pls
	;;
SCH)
	mplayer http://www.somafm.com/cliqhop.pls
	;;
CT)
	mplayer mms://85.10.196.144/capetalk-live
	;;
esac
 
Back
Top