Results 1 to 1 of 1
I have several .avi files that I burn to DVD. This is the script that I am using:
Code:
#!/usr/bin/env sh
if [ $# -eq 0 ]; then
echo "usage: $0 ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 05-11-2008 #1Just Joined!
- Join Date
- Jul 2006
- Posts
- 17
DVD Burning Problem
I have several .avi files that I burn to DVD. This is the script that I am using:
Then I burn it with growisofs -dvd-compat -Z /dev/dvd=<the_iso>.Code:#!/usr/bin/env sh if [ $# -eq 0 ]; then echo "usage: $0 FILE..." exit 1 fi for avi in $* do mpg=$avi.mpg ffmpeg -y -i $avi -target ntsc-dvd -aspect 4:3 $mpg dvdauthor -o dvd$$/ -t $mpg done dvdauthor -o dvd$$/ -T mkisofs -dvd-video -o dvd$$.iso dvd$$/
The problem is that when I take the DVD to my DVD player and watch it on TV, the video extends past the edge of the screen, so you can't see all of it.
Why is this happening, and how do I fix it? Thanks.
EDIT: If I run gmplayer dvd:// -dvd-device <the_iso>, it looks fine, so it must be something with my dvd player or tv. Any suggestions?


Reply With Quote
