Friday, October 21, 2011

QDVD Author

QDVD Author is a Qt-based GUI for DVD Author. A package for Natty does not exist, but the Maverick package can be used.

Enable the Maverick multiverse repository temporarily by adding it to the Synaptic Package Manager Origin of Packages ("Other" software):

Menu -> System -> Synaptic -> Settings -> Edit Origins -> Software Sources: Other Software -> Add...

deb http://us.archive.ubuntu.com/ubuntu maverick multiverse


From the Get and Remove Software menu (of Synaptic), install the qdvdauthor package (and the qdvdauthor-common package if it is not automatically installed as a dependency).

Once the download/installation is complete, disable the Maverick multiverse repository (to prevent conflict with other Natty packages).

Download and install the addons:

cd /tmp
wget http://qdvdauthor.sourceforge.net/data/masks.tar.bz2 -O masks.tar.bz2
wget http://qdvdauthor.sourceforge.net/data/buttons.tar.bz2 -O buttons.tar.bz2
wget http://qdvdauthor.sourceforge.net/data/alpha_trans.tar.bz2 -O alpha_trans.tar.bz2
cd /usr/share/qdvdauthor/
sudo tar -xjf /tmp/masks.tar.bz2
sudo tar -xjf /tmp/buttons.tar.bz2
sudo tar -xjf /tmp/alpha_trans.tar.bz2


Run:

Menu ->Multimedia -> QDVDAuthor


Follow instructions in the Quick-Start Guide:

QDVDAuthor -> Help -> Quick-Start Guide


For a tutorial on authoring DVDs, see this guide.
READ MORE - QDVD Author

DVD author

DVD author allows you to create menus and format your MPEG-2 videos onto a DVD disc so that you can play it in a commercial DVD player. DVD Author is a command line tool, but several GUI's exist. Install:

sudo apt-get install dvdauthor
READ MORE - DVD author

ManDVD

ManDVD is a QT-based DVD authoring tool which accepts several different file types as input. Install:

sudo apt-get install mandvd xine-ui
READ MORE - ManDVD

Convert Flash video audio to mp3

Once you have downloaded flash video content (.flv) from the Internet (using the Video Download Helper plug-in for Firefox, for example), the audio component can be converted to an mp3 using this command (from the command line Terminal). (This will work for any type of video file, not just Flash.)

ffmpeg -i nameofvideoclip.flv -ab 160k -ac 2 -ar 44100 -vn nameoffile.mp3


where -i indicates the input, -ab indicates the bit rate (in this example 160kb/sec), -vn means no video ouput, -ac 2 means 2 channels, -ar 44100 indicates the sampling frequency. See FFMPEG docs for more info.
READ MORE - Convert Flash video audio to mp3