Mercurial > libervia-desktop-kivy
annotate libervia/desktop_kivy/plugins/plugin_transfer_android_video.py @ 518:196483685a63 default tip
Use Font-Awesome instead of Fontello, following change in Libervia Media.
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Oct 2024 22:44:37 +0200 |
parents | b3cedbee561d |
children |
rev | line source |
---|---|
379 | 1 #!/usr/bin/env python3 |
2 | |
94 | 3 |
493
b3cedbee561d
refactoring: rename `cagou` to `libervia.desktop_kivy` + update imports and names following backend changes
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
4 #Libervia Desktop-Kivy |
461 | 5 # Copyright (C) 2016-2021 Jérôme Poisson (goffi@goffi.org) |
94 | 6 |
7 # This program is free software: you can redistribute it and/or modify | |
8 # it under the terms of the GNU Affero General Public License as published by | |
9 # the Free Software Foundation, either version 3 of the License, or | |
10 # (at your option) any later version. | |
11 | |
12 # This program is distributed in the hope that it will be useful, | |
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 # GNU Affero General Public License for more details. | |
16 | |
17 # You should have received a copy of the GNU Affero General Public License | |
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
19 | |
20 | |
493
b3cedbee561d
refactoring: rename `cagou` to `libervia.desktop_kivy` + update imports and names following backend changes
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
21 from libervia.backend.core import log as logging |
94 | 22 log = logging.getLogger(__name__) |
493
b3cedbee561d
refactoring: rename `cagou` to `libervia.desktop_kivy` + update imports and names following backend changes
Goffi <goffi@goffi.org>
parents:
491
diff
changeset
|
23 from libervia.backend.core.i18n import _ |
94 | 24 import sys |
25 import os | |
26 import os.path | |
27 import time | |
28 if sys.platform == "android": | |
95
3e3c097b07b7
upload: added voice plugin (for Android)
Goffi <goffi@goffi.org>
parents:
94
diff
changeset
|
29 from plyer import camera |
94 | 30 from jnius import autoclass |
31 Environment = autoclass('android.os.Environment') | |
32 else: | |
33 import tempfile | |
34 | |
35 | |
36 PLUGIN_INFO = { | |
312 | 37 "name": _("take video"), |
94 | 38 "main": "AndroidVideo", |
39 "platforms": ('android',), | |
40 "external": True, | |
312 | 41 "description": _("upload a video from video application"), |
42 "icon_medium": "{media}/icons/muchoslava/png/film_camera_off_50.png", | |
94 | 43 } |
44 | |
45 | |
46 class AndroidVideo(object): | |
47 | |
48 def __init__(self, callback, cancel_cb): | |
49 self.callback = callback | |
50 self.cancel_cb = cancel_cb | |
51 filename = time.strftime("%Y-%m-%d_%H:%M:%S.mpg", time.gmtime()) | |
491
203755bbe0fe
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
461
diff
changeset
|
52 tmp_dir = self.get_tmp_dir() |
94 | 53 tmp_file = os.path.join(tmp_dir, filename) |
312 | 54 log.debug("Video will be saved to {}".format(tmp_file)) |
94 | 55 camera.take_video(tmp_file, self.callback) |
56 # we don't delete the file, as it is nice to keep it locally | |
57 | |
491
203755bbe0fe
massive refactoring from camelCase -> snake_case. See backend commit log for more details
Goffi <goffi@goffi.org>
parents:
461
diff
changeset
|
58 def get_tmp_dir(self): |
94 | 59 if sys.platform == "android": |
60 dcim_path = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DCIM).getAbsolutePath() | |
61 return dcim_path | |
62 else: | |
63 return tempfile.mkdtemp() |