flet-audio-recorder 0.2.0.dev64__py3-none-any.whl → 0.2.0.dev504__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- flet_audio_recorder/audio_recorder.py +20 -59
- {flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/METADATA +6 -4
- {flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/RECORD +7 -7
- flutter/flet_audio_recorder/pubspec.lock +72 -56
- {flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/WHEEL +0 -0
- {flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/licenses/LICENSE +0 -0
- {flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/top_level.txt +0 -0
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import asyncio
|
|
2
1
|
from dataclasses import field
|
|
3
2
|
from typing import Optional
|
|
4
3
|
|
|
@@ -41,7 +40,7 @@ class AudioRecorder(ft.Service):
|
|
|
41
40
|
Event handler that is called when the state of the audio recorder changes.
|
|
42
41
|
"""
|
|
43
42
|
|
|
44
|
-
async def
|
|
43
|
+
async def start_recording(
|
|
45
44
|
self,
|
|
46
45
|
output_path: Optional[str] = None,
|
|
47
46
|
configuration: Optional[AudioRecorderConfiguration] = None,
|
|
@@ -68,7 +67,7 @@ class AudioRecorder(ft.Service):
|
|
|
68
67
|
assert self.page.web or output_path, (
|
|
69
68
|
"output_path must be provided on platforms other than web"
|
|
70
69
|
)
|
|
71
|
-
return await self.
|
|
70
|
+
return await self._invoke_method(
|
|
72
71
|
method_name="start_recording",
|
|
73
72
|
arguments={
|
|
74
73
|
"output_path": output_path,
|
|
@@ -79,7 +78,7 @@ class AudioRecorder(ft.Service):
|
|
|
79
78
|
timeout=timeout,
|
|
80
79
|
)
|
|
81
80
|
|
|
82
|
-
async def
|
|
81
|
+
async def is_recording(self, timeout: Optional[float] = 10) -> bool:
|
|
83
82
|
"""
|
|
84
83
|
Checks whether the audio recorder is currently recording.
|
|
85
84
|
|
|
@@ -92,11 +91,9 @@ class AudioRecorder(ft.Service):
|
|
|
92
91
|
Raises:
|
|
93
92
|
TimeoutError: If the request times out.
|
|
94
93
|
"""
|
|
95
|
-
return await self.
|
|
94
|
+
return await self._invoke_method("is_recording", timeout=timeout)
|
|
96
95
|
|
|
97
|
-
async def
|
|
98
|
-
self, timeout: Optional[float] = 10
|
|
99
|
-
) -> Optional[str]:
|
|
96
|
+
async def stop_recording(self, timeout: Optional[float] = 10) -> Optional[str]:
|
|
100
97
|
"""
|
|
101
98
|
Stops the audio recording and optionally returns the path to the saved file.
|
|
102
99
|
|
|
@@ -109,21 +106,9 @@ class AudioRecorder(ft.Service):
|
|
|
109
106
|
Raises:
|
|
110
107
|
TimeoutError: If the request times out.
|
|
111
108
|
"""
|
|
112
|
-
return await self.
|
|
113
|
-
|
|
114
|
-
async def cancel_recording_async(self, timeout: Optional[float] = 10):
|
|
115
|
-
"""
|
|
116
|
-
Cancels the current audio recording.
|
|
117
|
-
|
|
118
|
-
Args:
|
|
119
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
120
|
-
|
|
121
|
-
Raises:
|
|
122
|
-
TimeoutError: If the request times out.
|
|
123
|
-
"""
|
|
124
|
-
await self._invoke_method_async("cancel_recording", timeout=timeout)
|
|
109
|
+
return await self._invoke_method("stop_recording", timeout=timeout)
|
|
125
110
|
|
|
126
|
-
def cancel_recording(self, timeout: Optional[float] = 10):
|
|
111
|
+
async def cancel_recording(self, timeout: Optional[float] = 10):
|
|
127
112
|
"""
|
|
128
113
|
Cancels the current audio recording.
|
|
129
114
|
|
|
@@ -133,9 +118,9 @@ class AudioRecorder(ft.Service):
|
|
|
133
118
|
Raises:
|
|
134
119
|
TimeoutError: If the request times out.
|
|
135
120
|
"""
|
|
136
|
-
|
|
121
|
+
await self._invoke_method("cancel_recording", timeout=timeout)
|
|
137
122
|
|
|
138
|
-
async def
|
|
123
|
+
async def resume_recording(self, timeout: Optional[float] = 10):
|
|
139
124
|
"""
|
|
140
125
|
Resumes a paused audio recording.
|
|
141
126
|
|
|
@@ -145,33 +130,9 @@ class AudioRecorder(ft.Service):
|
|
|
145
130
|
Raises:
|
|
146
131
|
TimeoutError: If the request times out.
|
|
147
132
|
"""
|
|
148
|
-
await self.
|
|
149
|
-
|
|
150
|
-
def resume_recording(self, timeout: Optional[float] = 10):
|
|
151
|
-
"""
|
|
152
|
-
Resumes a paused audio recording.
|
|
153
|
-
|
|
154
|
-
Args:
|
|
155
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
156
|
-
|
|
157
|
-
Raises:
|
|
158
|
-
TimeoutError: If the request times out.
|
|
159
|
-
"""
|
|
160
|
-
asyncio.create_task(self.resume_recording_async(timeout=timeout))
|
|
161
|
-
|
|
162
|
-
async def pause_recording_async(self, timeout: Optional[float] = 10):
|
|
163
|
-
"""
|
|
164
|
-
Pauses the ongoing audio recording.
|
|
165
|
-
|
|
166
|
-
Args:
|
|
167
|
-
timeout: The maximum amount of time (in seconds) to wait for a response.
|
|
168
|
-
|
|
169
|
-
Raises:
|
|
170
|
-
TimeoutError: If the request times out.
|
|
171
|
-
"""
|
|
172
|
-
await self._invoke_method_async("pause_recording", timeout=timeout)
|
|
133
|
+
await self._invoke_method("resume_recording", timeout=timeout)
|
|
173
134
|
|
|
174
|
-
def pause_recording(self, timeout: Optional[float] = 10):
|
|
135
|
+
async def pause_recording(self, timeout: Optional[float] = 10):
|
|
175
136
|
"""
|
|
176
137
|
Pauses the ongoing audio recording.
|
|
177
138
|
|
|
@@ -181,9 +142,9 @@ class AudioRecorder(ft.Service):
|
|
|
181
142
|
Raises:
|
|
182
143
|
TimeoutError: If the request times out.
|
|
183
144
|
"""
|
|
184
|
-
|
|
145
|
+
await self._invoke_method("pause_recording", timeout=timeout)
|
|
185
146
|
|
|
186
|
-
async def
|
|
147
|
+
async def is_paused(self, timeout: Optional[float] = 10) -> bool:
|
|
187
148
|
"""
|
|
188
149
|
Checks whether the audio recorder is currently paused.
|
|
189
150
|
|
|
@@ -196,9 +157,9 @@ class AudioRecorder(ft.Service):
|
|
|
196
157
|
Raises:
|
|
197
158
|
TimeoutError: If the request times out.
|
|
198
159
|
"""
|
|
199
|
-
return await self.
|
|
160
|
+
return await self._invoke_method("is_paused", timeout=timeout)
|
|
200
161
|
|
|
201
|
-
async def
|
|
162
|
+
async def is_supported_encoder(
|
|
202
163
|
self, encoder: AudioEncoder, timeout: Optional[float] = 10
|
|
203
164
|
) -> bool:
|
|
204
165
|
"""
|
|
@@ -214,11 +175,11 @@ class AudioRecorder(ft.Service):
|
|
|
214
175
|
Raises:
|
|
215
176
|
TimeoutError: If the request times out.
|
|
216
177
|
"""
|
|
217
|
-
return await self.
|
|
178
|
+
return await self._invoke_method(
|
|
218
179
|
"is_supported_encoder", {"encoder": encoder}, timeout=timeout
|
|
219
180
|
)
|
|
220
181
|
|
|
221
|
-
async def
|
|
182
|
+
async def get_input_devices(
|
|
222
183
|
self, timeout: Optional[float] = 10
|
|
223
184
|
) -> list[InputDevice]:
|
|
224
185
|
"""
|
|
@@ -233,12 +194,12 @@ class AudioRecorder(ft.Service):
|
|
|
233
194
|
Raises:
|
|
234
195
|
TimeoutError: If the request times out.
|
|
235
196
|
"""
|
|
236
|
-
r = await self.
|
|
197
|
+
r = await self._invoke_method("get_input_devices", timeout=timeout)
|
|
237
198
|
return [
|
|
238
199
|
InputDevice(id=device_id, label=label) for device_id, label in r.items()
|
|
239
200
|
]
|
|
240
201
|
|
|
241
|
-
async def
|
|
202
|
+
async def has_permission(self, timeout: Optional[float] = 10) -> bool:
|
|
242
203
|
"""
|
|
243
204
|
Checks if the app has permission to record audio.
|
|
244
205
|
|
|
@@ -251,4 +212,4 @@ class AudioRecorder(ft.Service):
|
|
|
251
212
|
Raises:
|
|
252
213
|
TimeoutError: If the request times out.
|
|
253
214
|
"""
|
|
254
|
-
return await self.
|
|
215
|
+
return await self._invoke_method("has_permission", timeout=timeout)
|
{flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/METADATA
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: flet-audio-recorder
|
|
3
|
-
Version: 0.2.0.
|
|
3
|
+
Version: 0.2.0.dev504
|
|
4
4
|
Summary: Adds audio recording support to Flet apps.
|
|
5
5
|
Author-email: Flet contributors <hello@flet.dev>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -41,7 +41,9 @@ This package supports the following platforms:
|
|
|
41
41
|
| Android | ✅ |
|
|
42
42
|
| Web | ✅ |
|
|
43
43
|
|
|
44
|
-
##
|
|
44
|
+
## Usage
|
|
45
|
+
|
|
46
|
+
### Installation
|
|
45
47
|
|
|
46
48
|
To install the `flet-audio-recorder` package and add it to your project dependencies:
|
|
47
49
|
|
|
@@ -64,6 +66,6 @@ To install the `flet-audio-recorder` package and add it to your project dependen
|
|
|
64
66
|
> [!NOTE]
|
|
65
67
|
> On Linux, encoding is provided by [fmedia](https://stsaz.github.io/fmedia/) which must be installed separately.
|
|
66
68
|
|
|
67
|
-
|
|
69
|
+
### Examples
|
|
68
70
|
|
|
69
|
-
For examples, see [
|
|
71
|
+
For examples, see [these](./examples).
|
{flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/RECORD
RENAMED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
flet_audio_recorder/__init__.py,sha256=oAvNVxOwS2x1gSk7I4rZBO-AmJK2yOFNux0j2R4zdbM,603
|
|
2
|
-
flet_audio_recorder/audio_recorder.py,sha256=
|
|
2
|
+
flet_audio_recorder/audio_recorder.py,sha256=JUldoteWWGAObc0JlT-5BKrNp-ZOspxLFG4meoYp_QI,6875
|
|
3
3
|
flet_audio_recorder/types.py,sha256=EL1MPfsJIcDpf_lTMgjnXCBrLyQX_K-LdNfHakf0Aso,8696
|
|
4
|
-
flet_audio_recorder-0.2.0.
|
|
4
|
+
flet_audio_recorder-0.2.0.dev504.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
5
5
|
flutter/flet_audio_recorder/CHANGELOG.md,sha256=66sWepPaeTc9_lzcYIGU55AlxSU5Z1XVtknXpzd_-p8,40
|
|
6
6
|
flutter/flet_audio_recorder/LICENSE,sha256=QwcOLU5TJoTeUhuIXzhdCEEDDvorGiC6-3YTOl4TecE,11356
|
|
7
7
|
flutter/flet_audio_recorder/README.md,sha256=KcVP2UEKbA9P0r3i2GimRFFLwOqV3Az_7IjZYEXhd8w,76
|
|
8
8
|
flutter/flet_audio_recorder/analysis_options.yaml,sha256=32kjGAc-zF87inWaH5M46yGZWQDTwrwfvNLHeAocfG4,154
|
|
9
|
-
flutter/flet_audio_recorder/pubspec.lock,sha256=
|
|
9
|
+
flutter/flet_audio_recorder/pubspec.lock,sha256=KuPwKic-Y9Z4crbRdY0msqWputGhntZZJyPxBCIMo_4,25841
|
|
10
10
|
flutter/flet_audio_recorder/pubspec.yaml,sha256=604ZbToAyl_fE4y0gTzQhiIs5uL_o2tKTJX0JCMA40Q,538
|
|
11
11
|
flutter/flet_audio_recorder/lib/flet_audio_recorder.dart,sha256=x-KG1v-Qb_AiSyH9Y2Jt9PIYPxl_mQjXeIg_BDEQ0iQ,65
|
|
12
12
|
flutter/flet_audio_recorder/lib/src/audio_recorder.dart,sha256=IfTcKQgG7CYgSe8Rte4byeAXq550uFpWB2OKxFy2AGc,2776
|
|
13
13
|
flutter/flet_audio_recorder/lib/src/extension.dart,sha256=cmay1aBCZjTypBIxLzCnvJksP_rjbqMnWrnF5i-Gvfo,324
|
|
14
14
|
flutter/flet_audio_recorder/lib/src/utils/audio_recorder.dart,sha256=E2qc2hYv1qiIokffIV2rLP-4Q9X0Bv-Pr3lZsHQCbGo,2824
|
|
15
|
-
flet_audio_recorder-0.2.0.
|
|
16
|
-
flet_audio_recorder-0.2.0.
|
|
17
|
-
flet_audio_recorder-0.2.0.
|
|
18
|
-
flet_audio_recorder-0.2.0.
|
|
15
|
+
flet_audio_recorder-0.2.0.dev504.dist-info/METADATA,sha256=684GhR9WkjxWxe_V6MlEBPtSIj6T5blC8na2NQWDRsU,2184
|
|
16
|
+
flet_audio_recorder-0.2.0.dev504.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
17
|
+
flet_audio_recorder-0.2.0.dev504.dist-info/top_level.txt,sha256=fi4uOe4C7Pitw9OIzx7l0TgjkYomndtLYrQg8mjD-iA,28
|
|
18
|
+
flet_audio_recorder-0.2.0.dev504.dist-info/RECORD,,
|
|
@@ -13,10 +13,10 @@ packages:
|
|
|
13
13
|
dependency: transitive
|
|
14
14
|
description:
|
|
15
15
|
name: async
|
|
16
|
-
sha256:
|
|
16
|
+
sha256: "758e6d74e971c3e5aceb4110bfd6698efc7f501675bcfe0c775459a8140750eb"
|
|
17
17
|
url: "https://pub.dev"
|
|
18
18
|
source: hosted
|
|
19
|
-
version: "2.
|
|
19
|
+
version: "2.13.0"
|
|
20
20
|
boolean_selector:
|
|
21
21
|
dependency: transitive
|
|
22
22
|
description:
|
|
@@ -65,6 +65,14 @@ packages:
|
|
|
65
65
|
url: "https://pub.dev"
|
|
66
66
|
source: hosted
|
|
67
67
|
version: "3.0.6"
|
|
68
|
+
dbus:
|
|
69
|
+
dependency: transitive
|
|
70
|
+
description:
|
|
71
|
+
name: dbus
|
|
72
|
+
sha256: "79e0c23480ff85dc68de79e2cd6334add97e48f7f4865d17686dd6ea81a47e8c"
|
|
73
|
+
url: "https://pub.dev"
|
|
74
|
+
source: hosted
|
|
75
|
+
version: "0.7.11"
|
|
68
76
|
device_info_plus:
|
|
69
77
|
dependency: transitive
|
|
70
78
|
description:
|
|
@@ -93,10 +101,10 @@ packages:
|
|
|
93
101
|
dependency: transitive
|
|
94
102
|
description:
|
|
95
103
|
name: fake_async
|
|
96
|
-
sha256: "
|
|
104
|
+
sha256: "5368f224a74523e8d2e7399ea1638b37aecfca824a3cc4dfdf77bf1fa905ac44"
|
|
97
105
|
url: "https://pub.dev"
|
|
98
106
|
source: hosted
|
|
99
|
-
version: "1.3.
|
|
107
|
+
version: "1.3.3"
|
|
100
108
|
ffi:
|
|
101
109
|
dependency: transitive
|
|
102
110
|
description:
|
|
@@ -117,10 +125,10 @@ packages:
|
|
|
117
125
|
dependency: transitive
|
|
118
126
|
description:
|
|
119
127
|
name: file_picker
|
|
120
|
-
sha256:
|
|
128
|
+
sha256: e7e16c9d15c36330b94ca0e2ad8cb61f93cd5282d0158c09805aed13b5452f22
|
|
121
129
|
url: "https://pub.dev"
|
|
122
130
|
source: hosted
|
|
123
|
-
version: "10.2
|
|
131
|
+
version: "10.3.2"
|
|
124
132
|
fixnum:
|
|
125
133
|
dependency: transitive
|
|
126
134
|
description:
|
|
@@ -134,7 +142,7 @@ packages:
|
|
|
134
142
|
description:
|
|
135
143
|
path: "packages/flet"
|
|
136
144
|
ref: main
|
|
137
|
-
resolved-ref:
|
|
145
|
+
resolved-ref: "27cea68736639eff49200813838bba3b2bd4e2b0"
|
|
138
146
|
url: "https://github.com/flet-dev/flet.git"
|
|
139
147
|
source: git
|
|
140
148
|
version: "0.70.0"
|
|
@@ -176,10 +184,10 @@ packages:
|
|
|
176
184
|
dependency: transitive
|
|
177
185
|
description:
|
|
178
186
|
name: flutter_plugin_android_lifecycle
|
|
179
|
-
sha256:
|
|
187
|
+
sha256: "6382ce712ff69b0f719640ce957559dde459e55ecd433c767e06d139ddf16cab"
|
|
180
188
|
url: "https://pub.dev"
|
|
181
189
|
source: hosted
|
|
182
|
-
version: "2.0.
|
|
190
|
+
version: "2.0.29"
|
|
183
191
|
flutter_svg:
|
|
184
192
|
dependency: transitive
|
|
185
193
|
description:
|
|
@@ -226,10 +234,10 @@ packages:
|
|
|
226
234
|
dependency: transitive
|
|
227
235
|
description:
|
|
228
236
|
name: intl
|
|
229
|
-
sha256:
|
|
237
|
+
sha256: "3df61194eb431efc39c4ceba583b95633a403f46c9fd341e550ce0bfa50e9aa5"
|
|
230
238
|
url: "https://pub.dev"
|
|
231
239
|
source: hosted
|
|
232
|
-
version: "0.
|
|
240
|
+
version: "0.20.2"
|
|
233
241
|
json_annotation:
|
|
234
242
|
dependency: transitive
|
|
235
243
|
description:
|
|
@@ -242,26 +250,26 @@ packages:
|
|
|
242
250
|
dependency: transitive
|
|
243
251
|
description:
|
|
244
252
|
name: leak_tracker
|
|
245
|
-
sha256:
|
|
253
|
+
sha256: "8dcda04c3fc16c14f48a7bb586d4be1f0d1572731b6d81d51772ef47c02081e0"
|
|
246
254
|
url: "https://pub.dev"
|
|
247
255
|
source: hosted
|
|
248
|
-
version: "
|
|
256
|
+
version: "11.0.1"
|
|
249
257
|
leak_tracker_flutter_testing:
|
|
250
258
|
dependency: transitive
|
|
251
259
|
description:
|
|
252
260
|
name: leak_tracker_flutter_testing
|
|
253
|
-
sha256:
|
|
261
|
+
sha256: "1dbc140bb5a23c75ea9c4811222756104fbcd1a27173f0c34ca01e16bea473c1"
|
|
254
262
|
url: "https://pub.dev"
|
|
255
263
|
source: hosted
|
|
256
|
-
version: "3.0.
|
|
264
|
+
version: "3.0.10"
|
|
257
265
|
leak_tracker_testing:
|
|
258
266
|
dependency: transitive
|
|
259
267
|
description:
|
|
260
268
|
name: leak_tracker_testing
|
|
261
|
-
sha256: "
|
|
269
|
+
sha256: "8d5a2d49f4a66b49744b23b018848400d23e54caf9463f4eb20df3eb8acb2eb1"
|
|
262
270
|
url: "https://pub.dev"
|
|
263
271
|
source: hosted
|
|
264
|
-
version: "3.0.
|
|
272
|
+
version: "3.0.2"
|
|
265
273
|
lints:
|
|
266
274
|
dependency: transitive
|
|
267
275
|
description:
|
|
@@ -362,10 +370,10 @@ packages:
|
|
|
362
370
|
dependency: transitive
|
|
363
371
|
description:
|
|
364
372
|
name: path_provider_foundation
|
|
365
|
-
sha256: "
|
|
373
|
+
sha256: "16eef174aacb07e09c351502740fa6254c165757638eba1e9116b0a781201bbd"
|
|
366
374
|
url: "https://pub.dev"
|
|
367
375
|
source: hosted
|
|
368
|
-
version: "2.4.
|
|
376
|
+
version: "2.4.2"
|
|
369
377
|
path_provider_linux:
|
|
370
378
|
dependency: transitive
|
|
371
379
|
description:
|
|
@@ -418,10 +426,10 @@ packages:
|
|
|
418
426
|
dependency: transitive
|
|
419
427
|
description:
|
|
420
428
|
name: provider
|
|
421
|
-
sha256: "
|
|
429
|
+
sha256: "4e82183fa20e5ca25703ead7e05de9e4cceed1fbd1eadc1ac3cb6f565a09f272"
|
|
422
430
|
url: "https://pub.dev"
|
|
423
431
|
source: hosted
|
|
424
|
-
version: "6.1.5"
|
|
432
|
+
version: "6.1.5+1"
|
|
425
433
|
record:
|
|
426
434
|
dependency: "direct main"
|
|
427
435
|
description:
|
|
@@ -434,58 +442,58 @@ packages:
|
|
|
434
442
|
dependency: transitive
|
|
435
443
|
description:
|
|
436
444
|
name: record_android
|
|
437
|
-
sha256: "
|
|
445
|
+
sha256: "8361a791c9a3fa5c065f0b8b5adb10f12531f8538c86b19474cf7b56ea80d426"
|
|
438
446
|
url: "https://pub.dev"
|
|
439
447
|
source: hosted
|
|
440
|
-
version: "1.
|
|
448
|
+
version: "1.4.1"
|
|
441
449
|
record_ios:
|
|
442
450
|
dependency: transitive
|
|
443
451
|
description:
|
|
444
452
|
name: record_ios
|
|
445
|
-
sha256: "
|
|
453
|
+
sha256: "13e241ed9cbc220534a40ae6b66222e21288db364d96dd66fb762ebd3cb77c71"
|
|
446
454
|
url: "https://pub.dev"
|
|
447
455
|
source: hosted
|
|
448
|
-
version: "1.
|
|
456
|
+
version: "1.1.2"
|
|
449
457
|
record_linux:
|
|
450
458
|
dependency: transitive
|
|
451
459
|
description:
|
|
452
460
|
name: record_linux
|
|
453
|
-
sha256: "
|
|
461
|
+
sha256: "235b1f1fb84e810f8149cc0c2c731d7d697f8d1c333b32cb820c449bf7bb72d8"
|
|
454
462
|
url: "https://pub.dev"
|
|
455
463
|
source: hosted
|
|
456
|
-
version: "1.
|
|
464
|
+
version: "1.2.1"
|
|
457
465
|
record_macos:
|
|
458
466
|
dependency: transitive
|
|
459
467
|
description:
|
|
460
468
|
name: record_macos
|
|
461
|
-
sha256: "
|
|
469
|
+
sha256: "2849068bb59072f300ad63ed146e543d66afaef8263edba4de4834fc7c8d4d35"
|
|
462
470
|
url: "https://pub.dev"
|
|
463
471
|
source: hosted
|
|
464
|
-
version: "1.
|
|
472
|
+
version: "1.1.1"
|
|
465
473
|
record_platform_interface:
|
|
466
474
|
dependency: transitive
|
|
467
475
|
description:
|
|
468
476
|
name: record_platform_interface
|
|
469
|
-
sha256:
|
|
477
|
+
sha256: b0065fdf1ec28f5a634d676724d388a77e43ce7646fb049949f58c69f3fcb4ed
|
|
470
478
|
url: "https://pub.dev"
|
|
471
479
|
source: hosted
|
|
472
|
-
version: "1.
|
|
480
|
+
version: "1.4.0"
|
|
473
481
|
record_web:
|
|
474
482
|
dependency: transitive
|
|
475
483
|
description:
|
|
476
484
|
name: record_web
|
|
477
|
-
sha256:
|
|
485
|
+
sha256: "4f0adf20c9ccafcc02d71111fd91fba1ca7b17a7453902593e5a9b25b74a5c56"
|
|
478
486
|
url: "https://pub.dev"
|
|
479
487
|
source: hosted
|
|
480
|
-
version: "1.
|
|
488
|
+
version: "1.2.0"
|
|
481
489
|
record_windows:
|
|
482
490
|
dependency: transitive
|
|
483
491
|
description:
|
|
484
492
|
name: record_windows
|
|
485
|
-
sha256: "
|
|
493
|
+
sha256: "223258060a1d25c62bae18282c16783f28581ec19401d17e56b5205b9f039d78"
|
|
486
494
|
url: "https://pub.dev"
|
|
487
495
|
source: hosted
|
|
488
|
-
version: "1.0.
|
|
496
|
+
version: "1.0.7"
|
|
489
497
|
screen_retriever:
|
|
490
498
|
dependency: transitive
|
|
491
499
|
description:
|
|
@@ -526,14 +534,22 @@ packages:
|
|
|
526
534
|
url: "https://pub.dev"
|
|
527
535
|
source: hosted
|
|
528
536
|
version: "0.2.0"
|
|
537
|
+
screenshot:
|
|
538
|
+
dependency: transitive
|
|
539
|
+
description:
|
|
540
|
+
name: screenshot
|
|
541
|
+
sha256: "63817697a7835e6ce82add4228e15d233b74d42975c143ad8cfe07009fab866b"
|
|
542
|
+
url: "https://pub.dev"
|
|
543
|
+
source: hosted
|
|
544
|
+
version: "3.0.0"
|
|
529
545
|
sensors_plus:
|
|
530
546
|
dependency: transitive
|
|
531
547
|
description:
|
|
532
548
|
name: sensors_plus
|
|
533
|
-
sha256: "
|
|
549
|
+
sha256: "89e2bfc3d883743539ce5774a2b93df61effde40ff958ecad78cd66b1a8b8d52"
|
|
534
550
|
url: "https://pub.dev"
|
|
535
551
|
source: hosted
|
|
536
|
-
version: "6.1.
|
|
552
|
+
version: "6.1.2"
|
|
537
553
|
sensors_plus_platform_interface:
|
|
538
554
|
dependency: transitive
|
|
539
555
|
description:
|
|
@@ -554,10 +570,10 @@ packages:
|
|
|
554
570
|
dependency: transitive
|
|
555
571
|
description:
|
|
556
572
|
name: shared_preferences_android
|
|
557
|
-
sha256: "
|
|
573
|
+
sha256: "5bcf0772a761b04f8c6bf814721713de6f3e5d9d89caf8d3fe031b02a342379e"
|
|
558
574
|
url: "https://pub.dev"
|
|
559
575
|
source: hosted
|
|
560
|
-
version: "2.4.
|
|
576
|
+
version: "2.4.11"
|
|
561
577
|
shared_preferences_foundation:
|
|
562
578
|
dependency: transitive
|
|
563
579
|
description:
|
|
@@ -655,10 +671,10 @@ packages:
|
|
|
655
671
|
dependency: transitive
|
|
656
672
|
description:
|
|
657
673
|
name: test_api
|
|
658
|
-
sha256:
|
|
674
|
+
sha256: "522f00f556e73044315fa4585ec3270f1808a4b186c936e612cab0b565ff1e00"
|
|
659
675
|
url: "https://pub.dev"
|
|
660
676
|
source: hosted
|
|
661
|
-
version: "0.7.
|
|
677
|
+
version: "0.7.6"
|
|
662
678
|
typed_data:
|
|
663
679
|
dependency: transitive
|
|
664
680
|
description:
|
|
@@ -679,18 +695,18 @@ packages:
|
|
|
679
695
|
dependency: transitive
|
|
680
696
|
description:
|
|
681
697
|
name: url_launcher_android
|
|
682
|
-
sha256: "
|
|
698
|
+
sha256: "0aedad096a85b49df2e4725fa32118f9fa580f3b14af7a2d2221896a02cd5656"
|
|
683
699
|
url: "https://pub.dev"
|
|
684
700
|
source: hosted
|
|
685
|
-
version: "6.3.
|
|
701
|
+
version: "6.3.17"
|
|
686
702
|
url_launcher_ios:
|
|
687
703
|
dependency: transitive
|
|
688
704
|
description:
|
|
689
705
|
name: url_launcher_ios
|
|
690
|
-
sha256:
|
|
706
|
+
sha256: d80b3f567a617cb923546034cc94bfe44eb15f989fe670b37f26abdb9d939cb7
|
|
691
707
|
url: "https://pub.dev"
|
|
692
708
|
source: hosted
|
|
693
|
-
version: "6.3.
|
|
709
|
+
version: "6.3.4"
|
|
694
710
|
url_launcher_linux:
|
|
695
711
|
dependency: transitive
|
|
696
712
|
description:
|
|
@@ -703,10 +719,10 @@ packages:
|
|
|
703
719
|
dependency: transitive
|
|
704
720
|
description:
|
|
705
721
|
name: url_launcher_macos
|
|
706
|
-
sha256:
|
|
722
|
+
sha256: c043a77d6600ac9c38300567f33ef12b0ef4f4783a2c1f00231d2b1941fea13f
|
|
707
723
|
url: "https://pub.dev"
|
|
708
724
|
source: hosted
|
|
709
|
-
version: "3.2.
|
|
725
|
+
version: "3.2.3"
|
|
710
726
|
url_launcher_platform_interface:
|
|
711
727
|
dependency: transitive
|
|
712
728
|
description:
|
|
@@ -759,26 +775,26 @@ packages:
|
|
|
759
775
|
dependency: transitive
|
|
760
776
|
description:
|
|
761
777
|
name: vector_graphics_compiler
|
|
762
|
-
sha256:
|
|
778
|
+
sha256: ca81fdfaf62a5ab45d7296614aea108d2c7d0efca8393e96174bf4d51e6725b0
|
|
763
779
|
url: "https://pub.dev"
|
|
764
780
|
source: hosted
|
|
765
|
-
version: "1.1.
|
|
781
|
+
version: "1.1.18"
|
|
766
782
|
vector_math:
|
|
767
783
|
dependency: transitive
|
|
768
784
|
description:
|
|
769
785
|
name: vector_math
|
|
770
|
-
sha256:
|
|
786
|
+
sha256: d530bd74fea330e6e364cda7a85019c434070188383e1cd8d9777ee586914c5b
|
|
771
787
|
url: "https://pub.dev"
|
|
772
788
|
source: hosted
|
|
773
|
-
version: "2.
|
|
789
|
+
version: "2.2.0"
|
|
774
790
|
vm_service:
|
|
775
791
|
dependency: transitive
|
|
776
792
|
description:
|
|
777
793
|
name: vm_service
|
|
778
|
-
sha256: "
|
|
794
|
+
sha256: "45caa6c5917fa127b5dbcfbd1fa60b14e583afdc08bfc96dda38886ca252eb60"
|
|
779
795
|
url: "https://pub.dev"
|
|
780
796
|
source: hosted
|
|
781
|
-
version: "
|
|
797
|
+
version: "15.0.2"
|
|
782
798
|
web:
|
|
783
799
|
dependency: transitive
|
|
784
800
|
description:
|
|
@@ -807,10 +823,10 @@ packages:
|
|
|
807
823
|
dependency: transitive
|
|
808
824
|
description:
|
|
809
825
|
name: win32
|
|
810
|
-
sha256: "
|
|
826
|
+
sha256: "66814138c3562338d05613a6e368ed8cfb237ad6d64a9e9334be3f309acfca03"
|
|
811
827
|
url: "https://pub.dev"
|
|
812
828
|
source: hosted
|
|
813
|
-
version: "5.
|
|
829
|
+
version: "5.14.0"
|
|
814
830
|
win32_registry:
|
|
815
831
|
dependency: transitive
|
|
816
832
|
description:
|
|
@@ -852,5 +868,5 @@ packages:
|
|
|
852
868
|
source: hosted
|
|
853
869
|
version: "6.5.0"
|
|
854
870
|
sdks:
|
|
855
|
-
dart: ">=3.
|
|
871
|
+
dart: ">=3.8.0 <4.0.0"
|
|
856
872
|
flutter: ">=3.29.0"
|
{flet_audio_recorder-0.2.0.dev64.dist-info → flet_audio_recorder-0.2.0.dev504.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|