Archive

Archive for the ‘multimedia’ Category

Convert m4a to mp3

June 5th, 2010 Albertux 1 comment

Convert m4a to mp3

Damn my iPod doesn’t support m4a audio files ( http://support.apple.com/kb/sp27 )

No problem:

sudo apt-get install faad
#!/bin/bash
IFS=$'\t\n'
EXTS=( m4a M4A m4A M4a )
for EXT in ${EXTS[@]};
do
	for f in `find . -name "*.$EXT" -type f`;
	do
		echo "Converting m4a to mp3 ..."
		faad -o - "$f" | lame - "${f%.m4a}.mp3"
		rm $f
	done
done

Yes the script is similar to this resize multiple images

Great tool to edit tags (http://easytag.sourceforge.net/)

sudo apt-get install easytag

Categories: multimedia, unix/linux Tags: , ,

Google Chrome OS

November 20th, 2009 Albertux No comments

Google Chrome OS

Google Chrome OS:

uname -a

Linux localhost 2.6.30-chromeos-intel-menlow #1 SMP Fri Nov 20 02:53:44 UTC 2009 i686 GNU/Linux

cat /etc/debian_version

squeeze/sid

dpkg -l

OUTPUT

lsb_release -a

No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 9.10 (development branch)
Release: 9.10
Codename: karmic

So full name:

Google Chrome OS (Cromium OS) – Ubuntu 9.10 Karmic Koala – Debian squeeze/sid 6.0 – Gnu/Linux

JSON File with Google Chrome settings:

/home/chronos/[user@gmail.com]/.config/google-chrome/Local State

Links:

Build Chromium OS

Download Google Chrome OS Virtual Machine (VMware and VirtualBox)

  • Categories: multimedia, unix/linux, web Tags: , , , ,

    DJ Tools

    September 20th, 2009 Albertux 1 comment

    DJ Tools

    • Audacity (Editor and recorder)
    • LMMS (Produce music and mixing sounds)
    • Mixxx (Perform live mix)

    Screens:

    Install on Ubuntu this stuff:

    sudo apt-get install lmms mixxx audacity
    Categories: multimedia, unix/linux Tags: ,