Difference between revisions of "Nintendo 3DS Camera"
(Added example shellscript to split a file into 10 minute intervals.) |
|||
Line 2: | Line 2: | ||
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]] | [[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]] | ||
This application allows the user to record/play videos and take/view photos. | This application allows the user to record/play videos and take/view photos. | ||
+ | |||
+ | == How to split a movie file into 10 minute pieces == | ||
+ | <code> | ||
+ | ffmpeg -i video.ext -acodec copy -vcodec copy -f segment -segment_time 600 -map 0 -an HNI_1%03d.AVI | ||
+ | </code> | ||
== How to convert 2D Video for 3DS == | == How to convert 2D Video for 3DS == |
Revision as of 12:08, 15 November 2014
Overview
This application allows the user to record/play videos and take/view photos.
How to split a movie file into 10 minute pieces
ffmpeg -i video.ext -acodec copy -vcodec copy -f segment -segment_time 600 -map 0 -an HNI_1%03d.AVI
How to convert 2D Video for 3DS
ffmpeg -i video.ext -s 480x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -ac 1 /DCIM/xxxNINxx/HNI_nnnn.avi -t 10
How to convert 3D Video for 3DS
ffmpeg -y -i "video.mp4" -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:0:0 -acodec libmp3lame -ar 41000 -ab 96k -ac 2 "left.avi"
ffmpeg -y -i "video.mp4" -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:480:0 -an "right.avi"
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"
First two lines generate left and right files video, the last line generate the 3D video for the 3DS
Put the file in DCIM\xxxNINxx