Here’s the full procedure for making a DVD from something on your TiVo:
- Browse to https://your TiVo’s IP address
- Download the show. We’ll call it tvshow.TiVo
- Convert to MPEG
- Optional: Edit with Gopdit
- Transcode for NTSC DVD
- Create DVD Author file
- Create the DVD structure
- Check the DVD
- Burn the DVD
Log in with user=tivo and password=Your TiVo’s MAK
tivodecode -m MAK -o tvshow-orig.mpg tvshow.TiVo
gopdit tvshow-orig.mpg
Save to tvshow.mpg
ffmpeg -i tvshow.mpg -target ntsc-dvd tvshow.vob
Make a file called tvshow-dvdauthor.xml that contains this:
<dvdauthor>
<vmgm />
<titleset>
<titles>
<pgc>
<vob file="tvshow.vob" chapters="0,10:00,20:00,30:00,40:00,50:00" />
</pgc>
</titles>
</titleset>
</dvdauthor>
(This chapters list assumes a 1-hour show with chapters every ten minutes.)
dvdauthor -o dvd -x tvshow-dvdauthor.xml
mplayer dvd:// -dvd-device ./dvd
growisofs -dvd-compat -Z /dev/dvdrw -dvd-video ./dvd
Post a Comment
You must be logged in to post a comment.