Re: Converting Mono MP3 To Simulated Stereo on Linux
- From: "Alfred" <99m@xxxxxxxxx>
- Date: 30 Dec 2006 00:28:34 -0800
Alfred wrote:
If I have a mono MP3 file, is there a way to use ffmpeg or other tool
on Linux to convert it to simulated stereo? (Note, I have Ubuntu.)
#!/bin/bash
bu="http://youtube.com/get_video.php?"
mkdir -p ~/mp3
cd ~/mp3
read -p "YouTube URL For Video To Rip? " ur
read -p "Name Prefix of MP3 File? " nv
echo;echo;
wget ${ur} -O /tmp/y1;uf=${bu}`grep player2.swf /tmp/y1 | cut -d? -f2 |
cut -d\" -f1`
wget "${uf}" -O /tmp/y.flv
ffmpeg -i /tmp/y.flv -f mp3 -vn -acodec copy "/tmp/${nv}.mp3"
ecasound -i "/tmp/${nv}.mp3" -etf:8 -o "${nv}.mp3"
echo;echo;
rm -f "/tmp/${nv}.mp3"
echo "File is saved in your home directory in the 'mp3' folder."
read
.
- References:
- Converting Mono MP3 To Simulated Stereo on Linux
- From: Alfred
- Re: Converting Mono MP3 To Simulated Stereo on Linux
- From: google01013
- Re: Converting Mono MP3 To Simulated Stereo on Linux
- From: Alfred
- Converting Mono MP3 To Simulated Stereo on Linux
- Prev by Date: Re: Debian unstable DVD-s
- Next by Date: Clone root partition
- Previous by thread: Re: Converting Mono MP3 To Simulated Stereo on Linux
- Next by thread: Clone root partition
- Index(es):
Relevant Pages
|