Snippets

Dénes Türei Listen online radios from the shell with mpv

Created by Dénes Türei
#!/bin/bash
while true;
do
        # Radio Tilos
        mpv -msg-color -msg-module --cache=yes http://stream.tilos.hu/tilos
        
        # Radio Lahmacun
        # mpv -msg-color -msg-module --cache=yes https://streaming.lahmacun.hu/radio/8000/radio.mp3
        
        # We do it in a loop so in case of any interruption (e.g. going offline) the player restarts
        # Or in case it gets stuck you just hit Ctrl+C
        
        sleep 1
done

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.