The android video app updating media store tutorial describes how to notify the MediaStore when the app has captured a new image or video. This is important for other applications such as the mediastore viewer to be able to load and display the most recent capture image or video. Get Code The code to start this […]

Read more

The android video app time lapse tutorial describes how to add record video in time lapse format. In the android camera2 api video application we will be implementing a long click listener to be used for the time-lapse mode. Stopping time-lapse recording will be the same as recording, by just pressing the record button. Get Code The […]

Read more

The android video app recording audio tutorial describes how to add audio to the video for the recording camera capture session. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-audio or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-audio Steps Add record audio permission to the AndroidManifest file <?xml version="1.0" […]

Read more

The android video app still capture recording tutorial describes the how to take a photo or photos while recording a video. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-still-record or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-still-record Steps  Add record capture session & record capture session members private […]

Read more

The android video app still capture session tutorial describes the setup of the camera capture session for capturing  a still image once the autofocus has locked. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-still-preview or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-still-preview Steps Add members for the image folder […]

Read more

The android video app still image setup tutorial describes the steps involved for setting up the still image part of android video app. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-still-setup or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-still-setup Steps Setup members for the image size and image reader […]

Read more

The android video app adding record timer tutorial describes how add a timer when recording. This android tutorial shows how to use the android Chronograph view. Which is a simple view to display the elapsed time. The timer will only be displayed when the android video app is recording. Get Code The code to start this […]

Read more

The android video app video capture request tutorial describes how to setup the video capture session request for recording & saving videos. Get Code The code to this android tutorial can be found on github https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-capture or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-capture Steps Create a method to setup the capture request session for […]

Read more

The android video app setup media recorder tutorial describes how to create and configure a media recorder object that will be passed to the capture request for the recording session. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-media-recorder or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-media-recorder Steps Create […]

Read more

The android video app creating file storage tutorial describes the how to create the video folder and it’s files. Support for android marshmallow write external storage runtime permissions is also added. Get Code The code to start this tutorial is on github here https://github.com/mobapptuts/android_camera2_api_video_app.git Tag camera2-video-storage or you can run this command git clone https://github.com/mobapptuts/android_camera2_api_video_app.git –branch camera2-video-storage Steps Add […]

Read more