Scripts posted recently tagged to stream in Kelpi

1- 3 of 3.

Audio stream record script

to audio stream recording mplayer bash by txokolarte

#!/bin/bash
mplayer -dumpstream -dumpfile GRABATZEN mms://stream & sleep 60m;
killall mplayer;
mv GRABATZEN IRRATSAIOA_`date +%Y%m%d`;

Audio stream recording with mplayer

to audio stream recording mplayer bash by garaolaza

mplayer -dumpstream -dumpfile myfile.mp3 mms://yoururl_here
# myfile.mp3's extension depends on the format of the original stream.

Convert asf file to mp3 in Ubuntu

to audio stream recording convert mplayer bash ubuntu lame by garaolaza

# First convert .asf to wav:
mplayer -ao pcm:file=destination.wav source.asf
# Then encode it to mp3
lame destination.wav
hits counter