How to convert FLAC files to MP3 when running Ubuntu


1 min read
$ sudo apt-get install flac lame 
$ for f in *.flac; do flac -cd "$f" | lame -b 320 - "${f%.*}".mp3; done

Related Articles

GitHub MFA on Ubuntu CLI
1 min read

Using cadaver to download files from webDAV

My Ubuntu installation refuses to mount a particular webdave share. Using a share and GUI browser is for Windows users

1 min read

Ubuntu YouTube Player

Was looking for a tool to backup some movies from YouTube to local disk. Found Minitube, it appears to be

1 min read

Open MS .URL shortcuts on Ubuntu

We need to create a wrapper script and associate the file type with it. $ sudo vi /usr/bin/open-url.sh

1 min read

Install Silverlight on Ubuntu 14.04

Ok, sometimes you can't go around a Microsoft product because a crappy site is written in Silverlight and you can't

1 min read

GO TOP