You are not logged in.

#1 2006-04-12 00:26:23

shadowhand
Member
From: MN, USA
Registered: 2004-02-19
Posts: 1,142
Website

NEEDED: console tool dvd authoring

After today, I've decided that I need to figure out how to make DVDs from movie files, with only console tools (no frontends). I'm going to start this wiki guide in a day or two, and possibly make a bash script to do all this stuff. I'm not interested in how to rip dvds with the console (dvd::rip is great for that), but how to encode them from movie files (divX, Xvid, mpeg4, WMV).

If you have any useful links for any part of the process, paste a link here.


·¬»· i am shadowhand, powered by webfaction

Offline

#2 2006-04-12 06:16:12

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: NEEDED: console tool dvd authoring

mkisofs+growisofs for the win!

Offline

#3 2006-04-12 08:55:51

smoon
Member
Registered: 2005-08-22
Posts: 468
Website

Re: NEEDED: console tool dvd authoring

I was very satisfied with the results of tovid, you should give it a try.

Offline

#4 2006-04-12 09:55:01

Blaasvis
Member
Registered: 2003-01-17
Posts: 467

Re: NEEDED: console tool dvd authoring

transcode + mplex + dvdauthor big_smile

a script i once wrote tongue

#!/bin/sh
for i in *
do
transcode -i  "`echo $i | sed 's/ /\ /g' | sed 's/.avi*$//'`".avi -x mplayer,mplayer -V -E 48000 -b 224 -w 7500 -J fps --export_fps 25 -Z 720x576 -y mpeg -F 8 -o "`echo $i | sed 's/ /\ /g' | sed 's/.avi*$//'`"
mplex -f 8 -o "`echo $i | sed 's/ /\ /g' | sed 's/.avi*$//'`".mpg "`echo $i | sed 's/ /\ /g' | sed 's/.avi*$//'`".m1v "`echo $i | sed 's/ /\ /g' | sed 's/.avi*$//'`".mpa
rm *.m1v
rm *.mpa
done

Freedom is what i love

Offline

Board footer

Powered by FluxBB