Scripts posted recently tagged to mplayer in Kelpi

1- 5 of 5.

bash script to convert ASF/ASX to MP3 using mplayer and lame

to bash asx asf mp3 convert lame mplayer by anonymous

#!/bin/bash
# Bram Borggreve (c) 2008. GPL Licensed
# Script to convert ASX to MP3. Needs mplayer & lame binaries

# Check if we received a parameter

wma to mp3 with lame

to mp3 wma lame mplayer by nando.quintana

#! /bin/sh
# wma to mp3 script by mtron
# http://ubuntuforums.org/showthread.php?t=37793
zenity --info \
        --text="this script converts all wma files in the current folder

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