Skip to content

Instantly share code, notes, and snippets.

@drew1kun
Forked from kgriffs/vlc
Created October 28, 2015 17:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drew1kun/3206649d8f3b303ae7d2 to your computer and use it in GitHub Desktop.
Save drew1kun/3206649d8f3b303ae7d2 to your computer and use it in GitHub Desktop.
Run VLC from the command line on Mac OS X and stream internet radio (such as Radio Paradise).
#!/usr/bin/env bash
/Applications/VLC.app/Contents/MacOS/VLC -I rc "$@"
@drew1kun
Copy link
Author

Just save this to /usr/local/bin and then make it executable:

 chmod +x /usr/local/bin/vlc 

You can try it out by running vlc inside Terminal:

 vlc http://www.radioparadise.com/m3u/aac-128.m3u

If the audio skips, then try the direct stream instead:

 vlc http://stream-tx4.radioparadise.com:80/aac-128

The Ogg stream is also pretty good:

 vlc http://stream-sd.radioparadise.com/rp_192m.ogg

See also: http://www.radioparadise.com/rp_2.php?#name=Listen

@drew1kun
Copy link
Author

drew1kun commented Nov 2, 2015

Some cool radio stations:

Full Vibes Underground Electronic Radio:      http://radio.full-vibes.com:8023/listen.pls

BBC World Service News:      http://www.vpr.net/vpr_files/stream_playlists/vpr_bbc_mp3.pls
Amazing Smooth and Jazz:      http://uk1.internet-radio.com:4086/listen.pls
181 FM:      http://uplink.duplexfx.com:8022/listen.pls
JPHiP Radio:      http://radio.jphip.com:8800/listen.pls (KPOP)
Gold FM Radio:      http://uk2.internet-radio.com:30092/listen.pls
Party Vibe Radio:      http://www.partyvibe.com:8000/listen.pls
SomaFM:      http://voxsc1.somafm.com:8802/listen.pls
Just a Minute:      http://stream.beatradar.no:8007/listen.pls (Comedy)
MastRadio:      http://stream.mastradio.net:8000/listen.pls (Bollywood)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment