All Projects → munnadroid → AndroidBackgroundVideoRecording

munnadroid / AndroidBackgroundVideoRecording

Licence: GPL-3.0 License
Records camera video in background service

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to AndroidBackgroundVideoRecording

Android-Text-Scanner
Read text and numbers with android camera OCR
Stars: ✭ 27 (-20.59%)
Mutual labels:  camera
ONVIF-Java
A Java client library to discover, control and manage ONVIF-supported devices.
Stars: ✭ 94 (+176.47%)
Mutual labels:  camera
neural-greenscreen
Real time background replacement on a mac os driven webcam using the DeepLabV3 neural network for image segmentation and the native CoreMediaIO DAL framework of Mac OS.
Stars: ✭ 18 (-47.06%)
Mutual labels:  camera
OCR-Reader
An Android app to extract text from camera preview directly.
Stars: ✭ 43 (+26.47%)
Mutual labels:  camera
tethr
JavaScript/TypeScript library built on top of WebUSB for controlling digital cameras from browsers.
Stars: ✭ 62 (+82.35%)
Mutual labels:  camera
QuickRawPicker
📷 QuickRawPicker is a free and open source program that lets you cull, pick or rate raw photos captured by your camera. It is also compatible with the XMP sidecar file used by Adobe Bridge/Lightroom/Darktable or PP3 sidecar file used by Rawtherapee.
Stars: ✭ 26 (-23.53%)
Mutual labels:  camera
ImageAttachment
Example App to show how to pick an image from Camera/Gallery
Stars: ✭ 23 (-32.35%)
Mutual labels:  camera
raspberry pi home security system
Home monitoring system with a Raspberry Pi and sending notifications with a Telegram bot
Stars: ✭ 14 (-58.82%)
Mutual labels:  camera
optical-pulse-reader
iOS application that uses camera to detect heart rate.
Stars: ✭ 45 (+32.35%)
Mutual labels:  camera
buildLibrealsense2TX
Build librealsense 2.0 library on the NVIDIA Jetson TX Development kit. Intel RealSense D400 series cameras.
Stars: ✭ 54 (+58.82%)
Mutual labels:  camera
VehicleInfoOCR
Use your camera to read number plates and obtain vehicle details. Simple, ad-free and faster alternative to existing playstore apps
Stars: ✭ 35 (+2.94%)
Mutual labels:  camera
cannon-bluetooth-remote
Python script to emulate Canon's BR-E1 remote
Stars: ✭ 22 (-35.29%)
Mutual labels:  camera
ionic-multi-camera
Take multiple photos one after another
Stars: ✭ 12 (-64.71%)
Mutual labels:  camera
realsense-processing
Intel RealSense 2 support for the Processing framework.
Stars: ✭ 70 (+105.88%)
Mutual labels:  camera
StrayVisualizer
Visualize Data From Stray Scanner https://keke.dev/blog/2021/03/10/Stray-Scanner.html
Stars: ✭ 30 (-11.76%)
Mutual labels:  camera
KotlinProject
This repo help for all developer who want to learn android or want to work on advance feature of android. This repo created with help of @awesomeui, @materialdesign and android latest feature. this repo contain major feature like : @awesome UI, @Material design, @firebase (auth, realtime database, firestore, push notification), @database (Room d…
Stars: ✭ 40 (+17.65%)
Mutual labels:  camera
ios logger
Application for camera and sensor data logging (iOS)
Stars: ✭ 60 (+76.47%)
Mutual labels:  camera
GPUImage FilterVideo
录制美颜视频
Stars: ✭ 12 (-64.71%)
Mutual labels:  camera
MCamera
CameraViewController which allows to take photos, set filters, peform image blurring and more.
Stars: ✭ 28 (-17.65%)
Mutual labels:  camera
PhotosApp
React Native Photos App: AWS Amplify, AWS S3, Mobile Analytics with Pinpoint
Stars: ✭ 21 (-38.24%)
Mutual labels:  camera

AndroidBackgroundVideoRecording

It is a library project used for background front camera video recording.

Integration Steps:

  1. Add this project as library project.

  2. Write below code to start camera video recorder

      Intent intent = new Intent(YourActivity.this, RecorderService.class);
      intent.putExtra(RecorderService.INTENT_VIDEO_PATH, "/folder-path/"); //eg: "/video/camera/"
      startService(intent);
    
  3. Write below code to stop camera video recorder

      stopService(new Intent(YourActivity.this, RecorderService.class));
    

Now you are good to go.
Enjoy Coding !!!

Pull Request are welcome.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].