Converting Videos For Tivo ToGo using FFMPEG
In order to use the Tivo ToGo (galleon calls this the GoBack) feature, your video files not only need to be mpeg files, but they need to meet DVD standards. Here is what tivo recommends. Note: you may be able to encode your files in AC3 even if you are on a standalone tivo (not just the DVD burner tivo’s).
I found a really easy way (and free) to integrate the conversion into your Windows Explorer.
Software Requirements:
- Extract FFMPEG to a folder (like c:\cmdutils)
- Either create a folder for moviesForTivo or edit the next line so that the output files go into the standard c:\tivo recordings directory
- start notepad and paste this text into it
c:\cmdutils\ffmpeg.exe -i %1 -target ntsc-dvd -b 2500 -s 352x480 -hq -ab 160 "c:\data\MoviesForTivo\%~n1.mpg"
Dissecting the actual command line here for FFMPEG
ffmpeg.exe -i %1 -target ntsc-dvd -b 2500 -s 352x480 -hq -ab 160 "f:\data\MoviesForTivo\%~n1.mpg"
This command will produce a MPEG-2 file that is encoded with AC3 as the audio codec (this works on my standalone tivo)
Then all you have to do is associate this to your .AVI’s and .MOV’s and anything else you want to be able to convert from.
3 Responses to “Converting Videos For Tivo ToGo using FFMPEG”
Comment from Tony
Time December 9, 2006 at 11:42 am
I just found a place to download the very latest builds of FFMPEG, including windows binaries, shared and static! check it out at http://arrozcru.no-ip.org/ffmpeg_builds/ for CSV builds!
Comment from Andre
Time December 13, 2006 at 7:11 pm
Mac users should check out http://www.ffmpegx.com, which is a nice GUI for ffmpeg (and other tools).
Write a comment
You need to login to post comments!
Comment from Dennis
Time October 11, 2006 at 8:06 pm
Hey, this works great!