crow2icedearth
11-28-2006, 09:18 PM
I spend alot of time getting this to work. the main problem was video and audio sync problems. the easiest way to do is it with ffmpeg. I found a script and i modified to to work
#!/bin/sh
ffmpeg -i "$1" -f mp4 -vcodec mpeg4 -maxrate 1000 -b 700 -qmin 3 -qmax 5 \
-bufsize 4096 -r 29.97 -g 300 -acodec aac -ar 44100 -ab 192 -s 320x240 \
-aspect 4:3 $2.mp4
its a simple script that will encode it perfectly for your ipod. then use GTKPOD to tranfer it there. its easiest to makde a video playlist and just add your video mp4 files there.... the ipod should then play them perfectly . :)
anyone else know of another way to encode for ipod ?
#!/bin/sh
ffmpeg -i "$1" -f mp4 -vcodec mpeg4 -maxrate 1000 -b 700 -qmin 3 -qmax 5 \
-bufsize 4096 -r 29.97 -g 300 -acodec aac -ar 44100 -ab 192 -s 320x240 \
-aspect 4:3 $2.mp4
its a simple script that will encode it perfectly for your ipod. then use GTKPOD to tranfer it there. its easiest to makde a video playlist and just add your video mp4 files there.... the ipod should then play them perfectly . :)
anyone else know of another way to encode for ipod ?