OK, having updated your 3DS no doubt you'll want to watch videos on it in 3D. So, here's how :) The 3DS video format is a simple avi with two mjpeg video streams and a single ima adpcm audio stream, with a resolution of 480x240. You can convert to it with the following instructions... 1. Download or rip your 3D video (youtube has millions of them by now) 2. Download ffmpeg. 3. run the ffmpeg with the following options (assuming that your video is called "video.avi") If your 3D video is top-bottom format - [code] ffmpeg -y -i "video.avi" -s 400x480 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:0:0 -acodec libmp3lame -ar 44100 -ab 96k -ac 2 "left.avi" ffmpeg -y -i "video.avi" -s 400x480 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=400:240:0:240 -an "right.avi" [/code] If your 3D video is side-by-side format - [code] ffmpeg -y -i "video.avi" -s 800x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=400:240:0:0 -acodec libmp3lame -ar 44100 -ab 96k -ac 2 "left.avi" ffmpeg -y -i "video.avi" -s 800x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=400:240:400:0 -an "right.avi" [/code] After a short time, you should have "left.avi" and "right.avi". It is now safe to move continue... note - if the filesize is too large, you can adjust the quality by changing the "-qscale 1" to a different number, 1 - best, 31 = worst. 4. run ffmpeg with the following options to create the final movie file... [code] ffmpeg -y -i "left.avi" -i "right.avi" -vcodec copy -acodec adpcm_ima_wav -ac 2 -vcodec copy -map 0:0 -map 0:1 -map 1:0 "VID_0001.AVI" [/code] You can change "VID_0001.AVI" to a different filename if you like, but it must be LLL_NNNN.AVI to show up on the 3DS. Once that's done, copy it to the folder on your SD card that all of your photos are stored in and view it in the photo viewer. *update Some people wanted a 2D version also, so here it is, just a single step for the 2D version :) [code]ffmpeg -i "video.avi" -s 400x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -ac 2 "VID_0001.AVI" [/code] I have added a nice GUI converter to the whole process, making everything just that little bit easier for everyone :) [img]http://gbatemp.net/uploads/gallery/album_639/gallery_90607_639_21225.png[/img] [url=http://socoder.net/uploads/124/3DSMovie.zip]download 3DSMovie[/url] This post is from -- http://socoder.net/index.php?topic=0