In this video it shows the steps to create your own Car DashCam Android App. DashCam, also called as Dashboard Camera, can be used to record video and audio from the camera of your mobile phone while driving the car. Excerpt about DashCam App:Building a car dashcam app for Android…
Tag: camera
How to add custom text over a Bitmap image from your Android App?
In this video it shows the steps to add text over an existing image by reading it in Bitmap format. It creates a Canvas using the Bitmap and then calls drawText option to edit the bitmap file. I hope you like this video. For any questions, suggestions or appreciation please…
How to create AR (Augmented Reality) Android app by superimposing your own 3D model image on camera view?
This video shows the steps to create AR (Augmented Reality) Android app by superimposing your own 3D model image on camera view. In this video it shows the below steps: 1 Create GLTF file2 Put the file in your GitHub public repo3 Update the Android code The Android code in…
How to record continuous videos (splitting into multiple files) like cctv from your Android App?
This video demonstrates how to develop a CCTV-style video recording app for Android using the device’s camera. The tutorial includes code references and provides a link to the source code. The app splits recordings into separate files and includes features like setting a maximum recording duration and file size. The project folder is available for download upon payment of $10, with access details provided upon confirmation. For questions and access, contact the developer via the provided email or website.
How to develop a video recorder Android App? – Android 14 | API 34
This video tutorial demonstrates the process of creating an Android app for video recording and saving the video file in the device’s Download folder. It includes the necessary code and permission requirements. The app utilizes the device’s camera and microphone and provides options to start and stop video recording. The accompanying manifest and layout files are also provided. The complete project folder can be obtained by purchasing it for $10. After payment confirmation, access can be requested by contacting the developer. For further details, the developer can be reached at programmerworld1990@gmail.com or through https://programmerworld.co/contact/.
How to capture video using camera and save it in download folder from your Android App? API 34 | Android 14
This video shows the steps to capture the video from your phone’s camera and then save the video in the download folder of your Android App. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Complete source code…
How to live stream video from camera using the new createCaptureSession API in your Android App? – API 34
In this video it shows the steps to create live streaming video from the phone’s camera on the Texture View widget of your Android App. It uses the new CameraDevice.createCaptureSession(sessionConfiguration) API. The previous versions of this API are deprecated from API version 30 onwards. I hope you like this video….
How to share bitmap image over Telegram, WhatsApp, google photos, etc. from your Android App?
This video shows the steps to share an image over other applications such as Telegram, WhatsApp, google photos, etc. directly from your Android App. In this video it shares the image in bitmap form (as an image) and not as a file. To share the complete files one can refer…
How to implement image classification/ labelling method in your Android App?
In this video we will see how to implement image classification/ labelling method in your Android App. It uses com.google.mlkit:image-labeling dependency for the same. The details of this library is also shared in the below google developer page: https://developers.google.com/codelabs/tflite-computer-vision-mobile#0 In this tutorial it uses 2 images – flower and finger…