Jacob Gast
|
Verfasst am: 11.04.2004, 13:02 Titel: dvd9to5 mit einfachen Mitteln |
|
|
Eine normale Video DVD hat bis zu 9 GB Daten, doch die aktuellen Brenner unterstützen nur maximal 4,7 GB (und das ist auch noch eine geschönte Zahl), daher müssen die daten geschrumpft werden...
Ich habe mich lange rumgeärgert mit allen möglichen Programmen, die immer segfaulten oder keine Untertitel unterstützen und habe diese Lösung gefunden:
tccat von transcode zum streamen der daten:
http://www.theorie.physik.uni-goettingen.de/~ostreich/transcode/
vamps von heise zum refaktorisieren der daten:
http://www.heise.de/ct/ftp/04/01/094/
dvdauthor, um dann eine funktionierende dvd Struktur zu erstellen.
http://dvdauthor.sourceforge.net/
Für das ganze habe ich ein kleines Shellscript geschrieben:
j3rip.sh :
[code:1]
#!/bin/bash
rm -rf ~/j3rip
lsdvd /dev/cdroms/cdrom0
echo -n "Which title do you want to rip[2]: "
read -n 1 title
echo
echo -n "Which audio tracks do you want to rip? (separated by comma)[1,2]: "
read aud
echo -n "Which subtitles do you want to rip? (separated by comma)[1,3]: "
read sub
echo -n "Please enter the refactorizing factor (1 means no changes)[1.4]: "
read factor
echo -n "Please enter the title of the dvd [PULP_FICTION]:"
read name
dvdauthor -t -p palette2.rgb -o ~/j3rip -f "tccat -i /dev/cdroms/cdrom0 -P $title | ./vamps -E $factor -s $sub -a $aud -v |"
dvdauthor -T -o ~/j3rip
# xine dvd://~/j3rip
echo "Please enter a writeable medium in your dvd writer... then press any key!!"
read -n 1
growisofs -Z /dev/cdroms/cdrom1 -V $name -dvd-video -speed=4 -dvd-compat ~/j3rip
exit 0
[/code:1]
Ich hoffe, dass das auch bei anderen so gut funktioniert.
Für fragen einfach auf icq melden... #95156867
|
|