Last active
May 30, 2022 13:02
-
-
Save bluvertigo/a0c35f33a8068a0235a44f7b365dea77 to your computer and use it in GitHub Desktop.
Stream ripper - Radio Record / Registrare radio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
streamripper http://ice1.somafm.com/missioncontrol-128-mp3 -q 33 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 21 * * 1 /opt/streamripper/radio_gente_nerd.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
date=`date +"%Y_%a_%b_%d_%H%M%P"` | |
url=http://audio.rgunotizie.it:8000 | |
output_filename=radioGenteNerd.${date} | |
duration=60 | |
output_dir=/media/archivio/Media/Musica/RadioGenteNerd | |
cd $output_dir | |
streamripper $url -d $output_dir -l $duration -a $output_filename -o always |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
date=date +"%Y_%a_%b_%d_%H%M%P" | |
url=http://audio.rgunotizie.it:8000 | |
output_filename=radioGenteNerd.${date} | |
duration=7200 | |
output_dir=/media/archivio/Media/Musica/RadioGenteNerd | |
cd $output_dir | |
streamripper $url -d $output_dir -l $duration -a $output_filename -o never -u "FreeAmp/2.x" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment