DVD Burner for Linux?

Hello, after converting .avi files into videos, I now need to burn them so they can be used on a home dvd player. The problem Is, I can’t find a burner which will do it. I use ffmpeg gui to convert.

I’m a noob, so a one click install would be ideal.

Probably the easiest app for you would be either of these from Packman repo

devede
or
mandvd

Additional package repositories - openSUSE

Multi-media and Restricted Format Installation Guide - openSUSE Forums

Then use k3b to burn the resulting .iso to a dvd

The command line is your friend. It can’t be any easier than having a small shell script named “burn” and then you just enter

burn <dir_with_VOB_files>

The script is:

#!/bin/bash
if test -z "$1" ; then
        echo "usage: burn <dir_with_VOB_files>" ; exit 1
fi
read -p "Insert a blank dvd and press enter"
growisofs -dvd-compat -speed=4 -Z /dev/sr0 -dvd-video $1/
exit 0

Adapt “/dev/sr0” to your actual drive. I use mencoder to produce *.mpg files and then dvdauthor to make the VOBs.