How do I convert MP4 encoded videos to a Xbox360-friendly AVI video format? Even though there are a million video converters out there that can get the job done–the easiest way is to just use Format Factory (http://formatoz.com), a free Windows video converter–I want to do the job on my UbuntuLinux computer (actually, Lubuntu).
ffmpeg -i input.mp4 -vcodec mpeg4 -acodec ac3 -ar 48000 -ab 192k -ac 6 -sameq -aspect 16:9 output.avi
Source: Ubuntu Forums
1 |
mencoder -noskip "BBC-Planets_7.avi" -o "BBC-Planets_7_1.wmv" -of lavf -lavfopts format=asf -ovc lavc -lavcopts vcodec=wmv2:vbitrate=5000:vpass=1 -passlogfile "libvcodecstats.txt" -oac lavc -lavcopts acodec=wmav2 |
1 |
mencoder -noskip "BBC-Planets_7.avi" -o "BBC-Planets_7_1.wmv" -of lavf -lavfopts format=asf -ovc lavc -lavcopts vcodec=wmv2:vpass=2 -passlogfile "libvcodecstats.txt" -oac lavc -lavcopts acodec=wmav2 |
Source: http://edens-gate.com/blog/2008/07/13/convert-video-for-xbox-360/
Will either of these approaches work? Neither one did for me. Both failed. Note that one uses ffmpeg while the other relies on mencoder.
Update: Wait, WinFF DID work on converting the AVI, but not sure if it converted to Xbox friendly AVI. I will test that and post here.
Enter your email address:
Delivered by FeedBurner
Discover more from Another Think Coming
Subscribe to get the latest posts sent to your email.


Approach #1 definitely does not work. Try instead the following: ffmpeg -i input.mp4 -vtag XVID -vcodec copy -acodec copy output.avior better yetsudo apt-get install avidemux:)
Approach #1 definitely does not work. Try instead the following: ffmpeg -i input.mp4 -vtag XVID -vcodec copy -acodec copy output.avior better yetsudo apt-get install avidemux:)