Difference between revisions of "Nintendo 3DS Camera"

From 3dbrew
Jump to navigation Jump to search
m
m (outdated picture)
Line 1: Line 1:
 
== Overview ==
 
== Overview ==
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]]
+
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot (pre 4.0-7)]]
This application allows the user to record/play videos and take/view photos. The resolution of the top-screen on the 3DS is 400x240
+
This application allows the user to take/view photos and, since the 4.0.0-7 update, videos up to 10 minutes.
 +
 
 +
The resolution of the top-screen on the 3DS is 400x240.
  
 
== How to convert and split video.ext into 10 minute pieces ==
 
== How to convert and split video.ext into 10 minute pieces ==

Revision as of 18:32, 23 April 2016

Overview

Nintendo 3DS Camera Screenshot (pre 4.0-7)

This application allows the user to take/view photos and, since the 4.0.0-7 update, videos up to 10 minutes.

The resolution of the top-screen on the 3DS is 400x240.

How to convert and split video.ext into 10 minute pieces

ffmpeg -i video.ext -ss 0 -t 600 -y -r 24 -vsync 1 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -async 1 -ac 2 /DCIM/xxxNINxxx/HNI_%04d.AVI

How to convert 2D Video for 3DS

ffmpeg -i video.ext -r 24 -vsync 1 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -async 1 -ac 2 -vf scale=min(400\\,240*a):-1,pad=400:240:abs(ow-iw)/2:abs(oh-ih)/2 /DCIM/xxxNINxxx/HNI_nnnn.AVI

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