> ----------------------------------------------------------------------
>
> Message: 1
> Date: Tue, 12 Aug 2008 09:39:03 +1000
> From: Paul Gear <[EMAIL PROTECTED]>
> Subject: Re: AVI/DivX to DVD
> To: Ubuntu AU List <ubuntu-au@lists.ubuntu.com>
> Message-ID: <[EMAIL PROTECTED]>
> Content-Type: text/plain; charset="iso-8859-1"
>
> Junin Toiro wrote:
>> Hi guys,
>>
>> Just wondering if anyone can suggest an application to convert AVI
>> files (namely DivX)?
>>
>> I've done a lot of searching and can't seem to find anything that just 
>> works..
>>
>> I know there are ways to do this with scripts and term apps etc but I
>> don't have the time nor patience at the moment to do it this way.
>>
>> Any suggestions would be greatly appreciated.
>
> There's a DVD-quality video editing package called Kino.  I've not used
> it to author DVDs, but between that and K3B's DVD authoring you should
> be able to come up with something reasonable.
>
> Paul

Heres a little script I made long ago to convert single AVI files to
DVD. No menus or anything, just chuck it in the player and off you
go...

echo "Lets GO!!!"
rm -rf final.mpg && rm -rf DVD.iso && rm -rf DVD/
ffmpeg -i $1 -target pal-dvd -aspect 16:9 final.mpg
dvdauthor -o DVD/ -t final.mpg
dvdauthor -o DVD/ -T
mkisofs -dvd-video -v -o DVD.iso DVD

Thats for a 16:9 video. You can change the 16:9 to 4:3 for the
standard TV size. Experiment with what encoding works best for your
TV.

Toma

-- 
ubuntu-au mailing list
ubuntu-au@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-au

Reply via email to