mirror of
https://github.com/liberatedsystems/Sideband_CE.git
synced 2024-09-03 04:13:27 +02:00
60 lines
2.1 KiB
Python
60 lines
2.1 KiB
Python
import android
|
|
import android.activity
|
|
from os import remove
|
|
from jnius import autoclass, cast
|
|
from plyer.facades import Camera
|
|
from plyer.platforms.android import activity
|
|
|
|
Intent = autoclass('android.content.Intent')
|
|
PythonActivity = autoclass('org.kivy.android.PythonActivity')
|
|
MediaStore = autoclass('android.provider.MediaStore')
|
|
Uri = autoclass('android.net.Uri')
|
|
|
|
|
|
class AndroidCamera(Camera):
|
|
|
|
def _take_picture(self, on_complete, filename=None):
|
|
assert(on_complete is not None)
|
|
self.on_complete = on_complete
|
|
self.filename = filename
|
|
android.activity.unbind(on_activity_result=self._on_activity_result)
|
|
android.activity.bind(on_activity_result=self._on_activity_result)
|
|
intent = Intent(MediaStore.ACTION_IMAGE_CAPTURE)
|
|
uri = Uri.parse('file://' + filename)
|
|
parcelable = cast('android.os.Parcelable', uri)
|
|
intent.putExtra(MediaStore.EXTRA_OUTPUT, parcelable)
|
|
activity.startActivityForResult(intent, 0x123)
|
|
|
|
def _take_video(self, on_complete, filename=None):
|
|
assert(on_complete is not None)
|
|
self.on_complete = on_complete
|
|
self.filename = filename
|
|
android.activity.unbind(on_activity_result=self._on_activity_result)
|
|
android.activity.bind(on_activity_result=self._on_activity_result)
|
|
intent = Intent(MediaStore.ACTION_VIDEO_CAPTURE)
|
|
uri = Uri.parse('file://' + filename)
|
|
parcelable = cast('android.os.Parcelable', uri)
|
|
intent.putExtra(MediaStore.EXTRA_OUTPUT, parcelable)
|
|
|
|
# 0 = low quality, suitable for MMS messages,
|
|
# 1 = high quality
|
|
intent.putExtra(MediaStore.EXTRA_VIDEO_QUALITY, 1)
|
|
activity.startActivityForResult(intent, 0x123)
|
|
|
|
def _on_activity_result(self, requestCode, resultCode, intent):
|
|
if requestCode != 0x123:
|
|
return
|
|
android.activity.unbind(on_activity_result=self._on_activity_result)
|
|
if self.on_complete(self.filename):
|
|
self._remove(self.filename)
|
|
|
|
def _remove(self, fn):
|
|
try:
|
|
remove(fn)
|
|
except OSError:
|
|
pass
|
|
|
|
|
|
def instance():
|
|
return AndroidCamera()
|