Change class name and some values 56/156656/2
authorHaesu Gwon <haesu.gwon@samsung.com>
Thu, 19 Oct 2017 09:26:53 +0000 (18:26 +0900)
committerEditor Lionbridge <TizenEditor.SEL@lionbridge.com>
Thu, 19 Oct 2017 09:49:43 +0000 (12:49 +0300)
PS2: Reviewed

Change-Id: I8198303df2218729a40b99cde01bb71e7d478798
Signed-off-by: Haesu Gwon <haesu.gwon@samsung.com>
org.tizen.guides/html/dotnet/media/camera_cs.htm
org.tizen.guides/html/dotnet/media/recorder.htm

index d2d026f..2a1bf58 100644 (file)
@@ -76,7 +76,7 @@
         <li>Scene mode, HDR, theater</li>
         <li>Image quality</li>
     </ul>
-       <p>Depending on the camera device type, the device can support different orientations, resolutions, or preview and capture formats. You can obtain this information from the device using the <code>SupportedPreviewResolutions</code>, <code>SupportedCapturePixelFormats</code>, or other <code>SupportedXXX</code> properties of the <a href="https://developer.tizen.org/dev-guide/csapi/classTizen_1_1Multimedia_1_1CameraFeatures.html">Tizen.Multimedia.CameraFeatures</a> class.</p>
+       <p>Depending on the camera device type, the device can support different orientations, resolutions, or preview and capture formats. You can obtain this information from the device using the <code>SupportedPreviewResolutions</code>, <code>SupportedCapturePixelFormats</code>, or other <code>SupportedXXX</code> properties of the <a href="https://developer.tizen.org/dev-guide/csapi/classTizen_1_1Multimedia_1_1CameraCapabilities.html">Tizen.Multimedia.CameraCapabilities</a> class.</p>
 
   <p>Since devices can have multiple camera sensors with different capabilities, create a <code>Tizen.Multimedia.Camera</code> instance with a proper <a href="https://developer.tizen.org/dev-guide/csapi/namespaceTizen_1_1Multimedia.html#ab756993928779235b4a1eb3d1b37b92a">Tizen.Multimedia.CameraDevice</a> enumeration value, determining which camera sensor is used. Usually the primary sensor is located on the back side and the secondary sensor on the front side of the device. Once the camera sensor is selected, the selected sensor starts working.</p>
 
@@ -152,7 +152,7 @@ camera.Display = new Display(new MediaView(new Window("CameraWindow")));
 </li>
 <li>Set the camera preview resolution using the <code>PreviewResolution</code> property of the <code>Tizen.Multimedia.CameraSettings</code> class. You must set this property before previewing.
 
-<p>To find out which resolutions can be set for the camera preview on a specific device, use the <code>SupportedPreviewResolutions</code> property of the <a href="https://developer.tizen.org/dev-guide/csapi/classTizen_1_1Multimedia_1_1CameraFeatures.html">Tizen.Multimedia.CameraFeatures</a> class. This property returns an <code>IEnumerable</code> variable.</p>
+<p>To find out which resolutions can be set for the camera preview on a specific device, use the <code>SupportedPreviewResolutions</code> property of the <a href="https://developer.tizen.org/dev-guide/csapi/classTizen_1_1Multimedia_1_1CameraCapabilities.html">Tizen.Multimedia.CameraCapabilities</a> class. This property returns an <code>IEnumerable</code> variable.</p>
 
 <p>The following example sets the camera preview resolution to the first found supported resolution:</p>
 
index 36c40c6..c6a5bfb 100644 (file)
@@ -105,7 +105,7 @@ AudioRecorder audioRecorder = new AudioRecorder(RecorderAudioCodec.Aac, Recorder
 audioRecorder.SizeLimit = 1024;
 
 /// Set the audio encoder bitrate
-audioRecorder.AudioBitRate = 28800;
+audioRecorder.AudioBitRate = 128000;
 
 /// Set the audio device as microphone
 audioRecorder.AudioDevice = RecorderAudioDevice.Mic;
@@ -260,7 +260,7 @@ videoRecorder.VideoMotionRate = 1;
 videoRecorder.VideoBitRate = 288000;
 
 /// Set the audio encoder bitrate
-videoRecorder.AudioBitRate = 28800;
+videoRecorder.AudioBitRate = 128000;
 
 /// Set the audio sample rate
 videoRecorder.AudioSampleRate = 44100;