Home | History | Annotate | only in /developers/build/prebuilts/gradle/Camera2Video
Up to higher level directory
NameDateSize
.google/21-Aug-2018
Application/21-Aug-2018
build.gradle21-Aug-201814
CONTRIB.md21-Aug-20181.6K
CONTRIBUTING.md21-Aug-20181.5K
gradle/21-Aug-2018
gradlew21-Aug-20185K
gradlew.bat21-Aug-20182.3K
kotlinApp/21-Aug-2018
LICENSE21-Aug-201811.1K
packaging.yaml21-Aug-2018475
README.md21-Aug-20184.2K
screenshots/21-Aug-2018
settings.gradle21-Aug-201822

README.md

      1 
      2 Android Camera2Video Sample
      3 ===================================
      4 
      5 This sample shows how to record video using the new Camera2 API in Android Lollipop.
      6 
      7 Introduction
      8 ------------
      9 
     10 Android Lollipop introduced a new camera API, called camera2. This sample uses [CameraDevice][1]
     11 and [CameraCaptureSession][2] to record video. It also uses a custom [TextureView][3] to render the output.
     12 
     13 The main steps are:
     14 
     15 1. Create a custom TextureView class and add it to the layout. The purpose of the custom TextureView is
     16 to be able to draw itself according to an aspect ratio, which is set via a public method. Additionally,
     17 the `onMeasure(int widthMeasureSpec, int heightMeasureSpec)` method is overridden, using the aspect ratio.
     18 2. Implement a `TextureView.SurfaceTextureListener` on your TextureView, and override its
     19 `onSurfaceTextureSizeChanged(SurfaceTexture surfaceTexture, int width, int height)` method to calculate
     20 the matrix to apply to the TextureView so the camera output fits. Use the method `setTransform(matrix)` on
     21 the TextureView.
     22 3. Implement a [`CameraDevice.StateCallback`][4] to receive events about changes of the state of the
     23 camera device. Override its methods to set your CameraDevice instance, start the preview, and stop
     24 and release the camera.
     25 4. When starting the preview, set up the MediaRecorder to accept video format.
     26 5. Then, set up a [`CaptureRequest.Builder`][5] using `createCaptureRequest(CameraDevice.TEMPLATE_RECORD)`
     27 on your CameraDevice instance.
     28 6. Then, implement a [`CameraCaptureSession.StateCallback`][6], using the method
     29 `createCaptureSession(surfaces, new CameraCaptureSession.StateCallback(){})` on your CameraDevice instance,
     30 where `surfaces` is a list consisting of the surface view of your TextureView and the surface of
     31 your MediaRecorder instance.
     32 7. Use `start()` and `stop()` methods on your MediaRecorder instance to actually start and stop the recording.
     33 8. Lastly, set up and clean up your camera device in `onResume()` and `onPause()`.
     34 
     35 
     36 [1]: https://developer.android.com/reference/android/hardware/camera2/CameraDevice.html
     37 [2]: http://developer.android.com/reference/android/hardware/camera2/CameraCaptureSession.html
     38 [3]: http://developer.android.com/reference/android/view/TextureView.html
     39 [4]: https://developer.android.com/reference/android/hardware/camera2/CameraDevice.StateCallback.html
     40 [5]: http://developer.android.com/reference/android/hardware/camera2/CaptureRequest.Builder.html
     41 [6]: http://developer.android.com/reference/android/hardware/camera2/CameraCaptureSession.StateCallback.html
     42 
     43 Pre-requisites
     44 --------------
     45 
     46 - Android SDK 27
     47 - Android Build Tools v27.0.2
     48 - Android Support Repository
     49 
     50 Screenshots
     51 -------------
     52 
     53 <img src="screenshots/1-launch.png" height="400" alt="Screenshot"/> <img src="screenshots/2-record.png" height="400" alt="Screenshot"/> <img src="screenshots/3-save.png" height="400" alt="Screenshot"/> 
     54 
     55 Getting Started
     56 ---------------
     57 
     58 This sample uses the Gradle build system. To build this project, use the
     59 "gradlew build" command or use "Import Project" in Android Studio.
     60 
     61 Support
     62 -------
     63 
     64 - Google+ Community: https://plus.google.com/communities/105153134372062985968
     65 - Stack Overflow: http://stackoverflow.com/questions/tagged/android
     66 
     67 If you've found an error in this sample, please file an issue:
     68 https://github.com/googlesamples/android-Camera2Video
     69 
     70 Patches are encouraged, and may be submitted by forking this project and
     71 submitting a pull request through GitHub. Please see CONTRIBUTING.md for more details.
     72 
     73 License
     74 -------
     75 
     76 Copyright 2017 The Android Open Source Project, Inc.
     77 
     78 Licensed to the Apache Software Foundation (ASF) under one or more contributor
     79 license agreements.  See the NOTICE file distributed with this work for
     80 additional information regarding copyright ownership.  The ASF licenses this
     81 file to you under the Apache License, Version 2.0 (the "License"); you may not
     82 use this file except in compliance with the License.  You may obtain a copy of
     83 the License at
     84 
     85 http://www.apache.org/licenses/LICENSE-2.0
     86 
     87 Unless required by applicable law or agreed to in writing, software
     88 distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
     89 WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
     90 License for the specific language governing permissions and limitations under
     91 the License.
     92