You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 KiB

Listen to music online using this repo's github page

all of the stream files in the root folder of this repo can be listened to using their own page on this repo and the amazing webamp player, use the playlist buttons or click on the entries and hit play

decades
60s 70s 80s 90s
genres
americana acid_jazz alternative ambient anime big band
bluegrass blues breakbeat chillout classical club
college comedy country dance disco discofox
downtempo drum & bass easy listening ebm electronic eurodance
film folk funk goa gospel gothic
hardcore hardrock hip hop house indie industrial
instrumental jazz jpop jungle lounge metal
mixed musical oldies opera pop progressive
punk rap reggae retro rnb rock
salsa schlager ska smooth jazz soul soundtrack
trance urban various wave
location
france world asian india portugal usa
language
african arabic deutsch italian greek latin
polish polka romanian russian turk
miscellaneous
christian quran


to listen to other m3u playlists in this repo click on the specific repo for each folder and listen to them from there

repo
vtuner openradio.app zeno.fm radiostationusa.fm radioonlinelive pea.fm
onlineradio.eu hit-tuner.net streema radioguide.fm internetradio.com laut.fm
radio.net onlineradiobox liveonlineradio allradio.net get-me_radio


if you are on a chromium based web browser (chrome, vivaldi, opera, edge etc …) you are not able to listen to the most of the streams, here is an explanation from chrome support which tells you why this happens and how to fix it

Usually this error occurs because the radio station you are trying to listen to is running on an unencrypted port (not 443). This is quite common and it's not technically necessary for radio stations to be encrypted but nowadays web browsers like Chrome have started disallowing unencrypted content to be shown in an otherwise encrypted websites. There is a few solutions for you right now:

  • Use a different browser like Firefox. For the moment they haven't blocked unencrypted content on an otherwise encrypted page web page.

  • Open Chrome (or other chromium web browsers), go to the website and then click on the padlock icon to the left of the URL box and then from the drop down menu select the 'Site Settings' option, you can then scroll down to the 'Insecure content' option at the bottom of the page and select 'Allow', this will create an exception for the website and allow you to continue using the player as before.

  • download the stream files and play them locally on your pc or other devices which i've talked about further down in this markdown file


Shortcuts


Extra Streams

this repo now includes a few streams made by me

---everything-full.m3u combines all of the streams sorted by names that are shown in this repo

---everything-lite.m3u is exactly like the everything-full stream but cover images and extra info was removed

---randomized.m3u is exactly like the everything-lite stream but every line was shuffled and randomized

---sorted.m3u is exactly like the everything-lite stream but the links themselves are sorted alphabetically/numerically, it's good for when you have found a good radio station with many different genres of music to listen to all of them in order

every folder in this repo excluding the stuff folder has these stream files unique to the content of that specific folder

there is also two newly added files that combine everything including all the folders which have a -repo suffix to them


How to listen to these?

in the terminal, do this:

mpv https://raw.githubusercontent.com/junguler/m3u-radio-music-playlists/main/trance.m3u

or add/change m3u file association in your os to mpv and double click on any of .m3u files in your file manager


how to download a live-stream to my computer?

downloading from these m3u files is not possible as far as i know since they contain multiple streams, but if you want to download from a particular stream you can achieve this by using ffmpeg, i use the most popular (first stream) in the trance.m3u to showcase this, in your terminal change directory to where you want this file to be at (note that lines starting with # are not actual streams and are there for embedding extra info to your media player)

ffmpeg -y -i http://stream.dancewave.online:8080/dance.mp3 -c copy dancewave.mp3

change the filename at the end to what you like, as ffmpeg suggests when you feel happy with the length/size of this file press q in your terminal emulator to finish the process and save the file

because these are online streams there is no way to download the whole thing as they are constantly changing, but you can set a hard limit to when recording stops using the timeout command on bash/zsh shells

timeout 60 ffmpeg -y -i http://stream.dancewave.online:8080/dance.mp3 -c copy dancewave.mp3

the above command saves about one minute of the audio live-stream, you can specify longer times using -m for minutes -h for hours and -d for days, these can also be used with decimals for more control, so one and half minute can be set with 1.5m or 3 hour and 45 minutes can be set with 3.75h

timeout 1h ffmpeg -y -i http://stream.dancewave.online:8080/dance.mp3 -c copy dancewave.mp3

another more elegant way to do this is to use ffmpeg to segment these files with your desired time and add a timestamp at the end as filenames, code was copied from here

ffmpeg -i http://stream.dancewave.online:8080/dance.mp3 -c copy -f segment -strftime 1 -segment_time 60 %Y-%m-%d-%H-%M-%S.mp3

this will save a new mp3 file every minute, if you want to make this longer change -segment_time 60 and multiply the number of minutes you want for each file by 60, so if i want my mp3 files to each be 5 minutes i do -segment_time 300 this process goes on forever unless you run out of disk space or if you are not connected to the internet for some reason

this command can also be stopped using ctrl + c shortcut or the timeout command showcased above so adding timeout 1h in front of the above command stops the whole process after an hour


How to save songs indivudally by title from a live stream?

i have been looking for a way to do this for a while, i found this program streamwriter that does this but unfortunently it's only available on windows, this winehq page lists the program as platinum and it should work with wine without any issues but i have not tested it myself as i'm not on linux at the moment and don't have a virtual machine ready either

download the portable version of the program and extract it somewhere in your hard drive, the first time you open the program it's going to ask a few questions, things like language and where it's going to save downloaded songs, now that you are greeted with the program go to a m3u file of your favorite music genre and copy a stream link to start download, here is mine from the trance.m3u

http://51.89.148.171:8022/stream/1/

now put it inside the area i've shown and click to button next to it to start recording, after each song is completed it's going to create a new file and put a name on it from the title the stream is broadcasting

streamwriter

once you are happy with the amount of songs downloaded, right click on the stream and click on stop recording after current title

note that in some rare cases a stream does not broadcasts song titles and if you happen to come accross of these there is really nothing else you can and the program is going to continuously record the stream until you manually stop it


Mpv only shows a black window when listening to music, how to make it pretty?

download the visualizer script for mpv and put it in your scripts folder either on ~/.config/mpv/scripts on *nix systems

or C:\users\USERNAME\AppData\Roaming\mpv\scripts\ on windows

put these in your mpv.conf, this is a auto-profile for all audio files

[audio-only]
profile-cond=not vid
profile-restore=copy
vf-add=rgbashift=rh=-4:bv=+4
vf-add=drawbox=w=iw:h=ih:color=00FFFF@0.5
vf-add=drawbox=x=3:y=3:w=iw-6:h=ih-6:color=00FF00@0.5
vf-add=drawbox=x=6:y=6:w=iw-12:h=ih-12:color=FFFF00@0.5
vf-add=hue=H=0.1*PI*t


Normilize Audio

depending on the stream some music might be too load and others too quiet, thankfully we can use an ffmpeg filter inside mpv to fix the issue and force all music to be played at the same level, put this line inside your mpv.conf and it will automatically normalize all audio

af=lavfi=[dynaudnorm=f=75:g=25:p=0.55]


I really like mpv, how do i customize keybinds?

make a file called input.conf either at the folder your mpv.exe is on windows or on ~/.config/mpv/ if you are *nix systems, put these inside it for using page-up and page-down for changing radio stations

PGUP playlist-prev ; show-text "${playlist-pos-1}/${playlist-count}"
PGDWN playlist-next ; show-text "${playlist-pos-1}/${playlist-count}"


Isn't there an easier way to use and control these using mpv?

yes there is, use the IPTV script which comes with fuzzy finding stations, better keybinds and …


How to download all of the files?

use the auto-generated zip

you can also run a git clone on this repo

git clone https://github.com/junguler/m3u-radio-music-playlists.git

for further updates cd into the folder and do git pull


Git Stats

since the traffic section of the insight tab is hidden to other viewers of this repo i'm going to include them and update them every two weeks so you can have feel for how this repo is doing


Current and potential sources

here is a list of websites i've scraped from already and included m3u streams for in this repo

website folder script
http://radio.pervii.com/en/online-playlists-m3u.htm root radio.pervii.sh
https://www.internet-radio.com/ /internet-radio internet-radio.sh
https://liveonlineradio.net/ /live_online_radio live_online_radio.sh
https://onlineradiobox.com/ /online_radio_box online_radio_box.sh
https://www.radio.net/ /radio.net radio.net.sh
https://www.radioguide.fm/ /radio_guide.fm radio_guide.fm.sh
https://streema.com/ /streema streema.sh
http://www.hit-tuner.net/ /hit_tuner.net hit_tuner.net.sh
https://online-radio.eu/ /online_radio.eu online_radio.eu.sh
https://pea.fm /pea.fm pea.fm.sh
https://radioonlinelive.com/ /radio_online_live radio_online_live.sh
https://radiostationusa.fm/ /radio_station_usa.fm radio_station_usa.fm.sh
https://zeno.fm/ /zeno.fm zeno.fm.sh
https://openradio.app /openradio.app openradio.app.sh
https://vtuner.com/setupapp/guide/asp/BrowseStations/startpage.asp /vtuner vtuner.sh
https://laut.fm/ /laut.fm laut.fm.sh
https://www.allradio.net/ /allradio.net allradio.net.sh
https://www.getmeradio.com/ /get-me_radio get-me_radio.sh

my future plans for this repo is to keep scraping online radio websites, if and when i found one or few that are easy enough for me to scrape or not overly complicated (websites that have a cipher system to hide stream link or use services like cloadflare to avoid being easily scraped)


websites i can't scrape

here is a list of websites i considered scraping but was unable to, this list will be kept updated

website reason
https://tunein.com/radio/home/ cloudflare protected
https://www.accuradio.com/ cloudflare protected
https://internetradiouk.com cloudflare protected
https://www.moreradio.online/ cloudflare protected
http://radio.garden/ i don't understand this website
https://www.radio-uk.co.uk/ uses a cipher system to hide stream link
https://mytuner-radio.com/ uses a cipher system to hide stream link
https://www.fmradiofree.com/ uses a cipher system to hide stream link
https://tuneyou.com/radio/music/ could not extract stream link
https://live365.com/ could not get passed the first page of each genres due to js generated pages
https://lixty.com/en/genres website was either too slow or too fast to put rate limiting restrictions on me

see a website you like in this list and know how to overcome the issues to scrape them? open an issue or discussion and share you knowledge with me