<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.3dbrew.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Arizvisa</id>
	<title>3dbrew - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.3dbrew.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Arizvisa"/>
	<link rel="alternate" type="text/html" href="https://www.3dbrew.org/wiki/Special:Contributions/Arizvisa"/>
	<updated>2026-05-12T23:03:02Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10720</id>
		<title>Nintendo 3DS Camera</title>
		<link rel="alternate" type="text/html" href="https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10720"/>
		<updated>2014-11-16T05:37:32Z</updated>

		<summary type="html">&lt;p&gt;Arizvisa: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]]&lt;br /&gt;
This application allows the user to record/play videos and take/view photos. The resolution of the top-screen on the 3DS is 400x240&lt;br /&gt;
&lt;br /&gt;
== How to convert and split video.ext into 10 minute pieces ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
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&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 2D Video for 3DS ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
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&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 3D Video for 3DS ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -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 &amp;quot;left.avi&amp;quot;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:480:0 -an &amp;quot;right.avi&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ffmpeg -y -i &amp;quot;left.avi&amp;quot; -i &amp;quot;right.avi&amp;quot; -vcodec copy -acodec adpcm_ima_wav -ac 2 -vcodec copy -map 0:0 -map 0:1 -map 1:0 &amp;quot;VID_0001.AVI&amp;quot;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First two lines generate left and right files video, the last line generate the 3D video for the 3DS&lt;br /&gt;
&lt;br /&gt;
Put the file in DCIM\xxxNINxx&lt;/div&gt;</summary>
		<author><name>Arizvisa</name></author>
	</entry>
	<entry>
		<id>https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10701</id>
		<title>Nintendo 3DS Camera</title>
		<link rel="alternate" type="text/html" href="https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10701"/>
		<updated>2014-11-15T15:54:57Z</updated>

		<summary type="html">&lt;p&gt;Arizvisa: Updated the ffmpeg commands with the ones I decided on in my shellscript&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]]&lt;br /&gt;
This application allows the user to record/play videos and take/view photos. The resolution of the top-screen on the 3DS is 400x240&lt;br /&gt;
&lt;br /&gt;
== How to convert and split video.ext into 10 minute pieces ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i video.ext -ss 600 -t 600 -y -r 24 -vsync 1 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -async 1 -ac 2 /DCIM/xxxNINxxx/HNI_%04d.AVI&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 2D Video for 3DS ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
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&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 3D Video for 3DS ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -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 &amp;quot;left.avi&amp;quot;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:480:0 -an &amp;quot;right.avi&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ffmpeg -y -i &amp;quot;left.avi&amp;quot; -i &amp;quot;right.avi&amp;quot; -vcodec copy -acodec adpcm_ima_wav -ac 2 -vcodec copy -map 0:0 -map 0:1 -map 1:0 &amp;quot;VID_0001.AVI&amp;quot;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First two lines generate left and right files video, the last line generate the 3D video for the 3DS&lt;br /&gt;
&lt;br /&gt;
Put the file in DCIM\xxxNINxx&lt;/div&gt;</summary>
		<author><name>Arizvisa</name></author>
	</entry>
	<entry>
		<id>https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10696</id>
		<title>Nintendo 3DS Camera</title>
		<link rel="alternate" type="text/html" href="https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10696"/>
		<updated>2014-11-15T10:08:19Z</updated>

		<summary type="html">&lt;p&gt;Arizvisa: Added example shellscript to split a file into 10 minute intervals.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]]&lt;br /&gt;
This application allows the user to record/play videos and take/view photos.&lt;br /&gt;
&lt;br /&gt;
== How to split a movie file into 10 minute pieces ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i video.ext -acodec copy -vcodec copy -f segment -segment_time 600 -map 0 -an HNI_1%03d.AVI&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 2D Video for 3DS ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
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&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 3D Video for 3DS ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -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 &amp;quot;left.avi&amp;quot;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:480:0 -an &amp;quot;right.avi&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ffmpeg -y -i &amp;quot;left.avi&amp;quot; -i &amp;quot;right.avi&amp;quot; -vcodec copy -acodec adpcm_ima_wav -ac 2 -vcodec copy -map 0:0 -map 0:1 -map 1:0 &amp;quot;VID_0001.AVI&amp;quot;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First two lines generate left and right files video, the last line generate the 3D video for the 3DS&lt;br /&gt;
&lt;br /&gt;
Put the file in DCIM\xxxNINxx&lt;/div&gt;</summary>
		<author><name>Arizvisa</name></author>
	</entry>
	<entry>
		<id>https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10670</id>
		<title>Nintendo 3DS Camera</title>
		<link rel="alternate" type="text/html" href="https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10670"/>
		<updated>2014-11-15T01:04:55Z</updated>

		<summary type="html">&lt;p&gt;Arizvisa: /* How to convert 2D Video for 3DS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]]&lt;br /&gt;
This application allows the user to record/play videos and take/view photos.&lt;br /&gt;
&lt;br /&gt;
== How to convert 2D Video for 3DS ==&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
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&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 3D Video for 3DS ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -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 &amp;quot;left.avi&amp;quot;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:480:0 -an &amp;quot;right.avi&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ffmpeg -y -i &amp;quot;left.avi&amp;quot; -i &amp;quot;right.avi&amp;quot; -vcodec copy -acodec adpcm_ima_wav -ac 2 -vcodec copy -map 0:0 -map 0:1 -map 1:0 &amp;quot;VID_0001.AVI&amp;quot;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First two lines generate left and right files video, the last line generate the 3D video for the 3DS&lt;br /&gt;
&lt;br /&gt;
Put the file in DCIM\xxxNINxx&lt;/div&gt;</summary>
		<author><name>Arizvisa</name></author>
	</entry>
	<entry>
		<id>https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10662</id>
		<title>Nintendo 3DS Camera</title>
		<link rel="alternate" type="text/html" href="https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10662"/>
		<updated>2014-11-14T15:46:24Z</updated>

		<summary type="html">&lt;p&gt;Arizvisa: removed some stray spaces.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]]&lt;br /&gt;
This application allows the user to record/play videos and take/view photos.&lt;br /&gt;
&lt;br /&gt;
== How to convert 2D Video for 3DS ==&lt;br /&gt;
single screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
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&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
double screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i video.ext -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -ac 1 /DCIM/xxxNINxx/HNI_nnnn.avi -t 10&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 3D Video for 3DS ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -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 &amp;quot;left.avi&amp;quot;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:480:0 -an &amp;quot;right.avi&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ffmpeg -y -i &amp;quot;left.avi&amp;quot; -i &amp;quot;right.avi&amp;quot; -vcodec copy -acodec adpcm_ima_wav -ac 2 -vcodec copy -map 0:0 -map 0:1 -map 1:0 &amp;quot;VID_0001.AVI&amp;quot;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First two lines generate left and right files video, the last line generate the 3D video for the 3DS&lt;br /&gt;
&lt;br /&gt;
Put the file in DCIM\xxxNINxx&lt;/div&gt;</summary>
		<author><name>Arizvisa</name></author>
	</entry>
	<entry>
		<id>https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10661</id>
		<title>Nintendo 3DS Camera</title>
		<link rel="alternate" type="text/html" href="https://www.3dbrew.org/w/index.php?title=Nintendo_3DS_Camera&amp;diff=10661"/>
		<updated>2014-11-14T15:40:15Z</updated>

		<summary type="html">&lt;p&gt;Arizvisa: Added the ffmpeg commandline for the 2d version in case it isn&amp;#039;t obvious.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Overview ==&lt;br /&gt;
[[File:Nintendo 3DS Camera scnshot.png|thumb|right|Nintendo 3DS Camera Screenshot]]&lt;br /&gt;
This application allows the user to record/play videos and take/view photos.&lt;br /&gt;
&lt;br /&gt;
== How to convert 2D Video for 3DS ==&lt;br /&gt;
single screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i video.ext -s 480x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -ac 1 /DCIM/xxxNINxx/HNI&lt;br /&gt;
_nnnn.avi -t 10&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
double screen&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -i video.ext -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -acodec adpcm_ima_wav -ac 1 /DCIM/xxxNINxx/HNI&lt;br /&gt;
_nnnn.avi -t 10&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== How to convert 3D Video for 3DS ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -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 &amp;quot;left.avi&amp;quot;&lt;br /&gt;
ffmpeg -y -i &amp;quot;video.mp4&amp;quot; -s 960x240 -aspect 2:1 -r 20 -vcodec mjpeg -qscale 1 -vf crop=480:240:480:0 -an &amp;quot;right.avi&amp;quot;&lt;br /&gt;
&lt;br /&gt;
ffmpeg -y -i &amp;quot;left.avi&amp;quot; -i &amp;quot;right.avi&amp;quot; -vcodec copy -acodec adpcm_ima_wav -ac 2 -vcodec copy -map 0:0 -map 0:1 -map 1:0 &amp;quot;VID_0001.AVI&amp;quot;&lt;br /&gt;
&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
First two lines generate left and right files video, the last line generate the 3D video for the 3DS&lt;br /&gt;
&lt;br /&gt;
Put the file in DCIM\xxxNINxx&lt;/div&gt;</summary>
		<author><name>Arizvisa</name></author>
	</entry>
</feed>