python-audio-autotest-3.10 1.5.5__py3-none-any.whl → 1.5.7__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.
- pyaatlibs/__init__.py +1 -1
- pyaatlibs/apk/audioworker.apk +0 -0
- pyaatlibs/audioworker.py +20 -0
- {python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/METADATA +15 -8
- {python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/RECORD +8 -8
- {python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/WHEEL +1 -1
- {python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/LICENSE +0 -0
- {python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/top_level.txt +0 -0
pyaatlibs/__init__.py
CHANGED
pyaatlibs/apk/audioworker.apk
CHANGED
Binary file
|
pyaatlibs/audioworker.py
CHANGED
@@ -159,6 +159,16 @@ class AudioWorkerApp(AppInterface):
|
|
159
159
|
}
|
160
160
|
__class__.send_intent(device, serialno, name, configs)
|
161
161
|
|
162
|
+
@staticmethod
|
163
|
+
def playback_nonoffload_seek_to(device=None, serialno=None, playback_id=0, seek_position_ms=0):
|
164
|
+
name = __class__.AUDIOWORKER_INTENT_PREFIX + "playback.seek"
|
165
|
+
configs = {
|
166
|
+
"type": "non-offload",
|
167
|
+
"playback-id": playback_id,
|
168
|
+
"seek-position-ms" : seek_position_ms
|
169
|
+
}
|
170
|
+
__class__.send_intent(device, serialno, name, configs)
|
171
|
+
|
162
172
|
@staticmethod
|
163
173
|
def playback_offload(
|
164
174
|
device=None, serialno=None, file="null",
|
@@ -176,6 +186,16 @@ class AudioWorkerApp(AppInterface):
|
|
176
186
|
}
|
177
187
|
__class__.send_intent(device, serialno, name, configs)
|
178
188
|
|
189
|
+
@staticmethod
|
190
|
+
def playback_offload_seek_to(device=None, serialno=None, playback_id=0, seek_position_ms=0):
|
191
|
+
name = __class__.AUDIOWORKER_INTENT_PREFIX + "playback.seek"
|
192
|
+
configs = {
|
193
|
+
"type": "offload",
|
194
|
+
"playback-id": playback_id,
|
195
|
+
"seek-position-ms" : seek_position_ms
|
196
|
+
}
|
197
|
+
__class__.send_intent(device, serialno, name, configs)
|
198
|
+
|
179
199
|
@staticmethod
|
180
200
|
def _common_info(
|
181
201
|
device=None, serialno=None, ctype=None, controller=None, tolog=False, extra_params={}):
|
{python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/METADATA
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: python-audio-autotest-3.10
|
3
|
-
Version: 1.5.
|
3
|
+
Version: 1.5.7
|
4
4
|
Summary: This is a auto-testing framework of audio functions for Android devices.
|
5
5
|
Home-page: https://github.com/HW-Lee/AudioAutoTest
|
6
6
|
Author: Hao-Wei Lee
|
@@ -10,13 +10,13 @@ Classifier: License :: OSI Approved :: Apache Software License
|
|
10
10
|
Classifier: Operating System :: OS Independent
|
11
11
|
Description-Content-Type: text/markdown
|
12
12
|
License-File: LICENSE
|
13
|
-
Requires-Dist: androidviewclient
|
14
|
-
Requires-Dist: librosa
|
15
|
-
Requires-Dist: matplotlib
|
16
|
-
Requires-Dist: numpy
|
17
|
-
Requires-Dist: scikit-learn
|
18
|
-
Requires-Dist: scipy
|
19
|
-
Requires-Dist: sounddevice
|
13
|
+
Requires-Dist: androidviewclient==22.3.1
|
14
|
+
Requires-Dist: librosa==0.9.2
|
15
|
+
Requires-Dist: matplotlib==3.5.3
|
16
|
+
Requires-Dist: numpy==1.23.5
|
17
|
+
Requires-Dist: scikit-learn==1.3.0
|
18
|
+
Requires-Dist: scipy==1.10.1
|
19
|
+
Requires-Dist: sounddevice==0.4.5
|
20
20
|
|
21
21
|
# AudioAutoTest
|
22
22
|
## Description
|
@@ -26,6 +26,13 @@ This is a auto-testing framework of audio functions for Android devices.
|
|
26
26
|
|
27
27
|
## Release Note
|
28
28
|
### v1.5
|
29
|
+
### v1.5.7
|
30
|
+
- Update audioworker.apk (6d15fe8-python-audio-autotest-v1.5.7)
|
31
|
+
- Add support to seek during the playback
|
32
|
+
|
33
|
+
### v1.5.6
|
34
|
+
- Update the version of scikit-learn for the compatibility of Python 3.11.4
|
35
|
+
|
29
36
|
### v1.5.5
|
30
37
|
- Fix the crash when calling Adb.disable_wifi_adb after Adb.is_wifi_adb_supported
|
31
38
|
|
{python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/RECORD
RENAMED
@@ -1,4 +1,4 @@
|
|
1
|
-
pyaatlibs/__init__.py,sha256=
|
1
|
+
pyaatlibs/__init__.py,sha256=2_GKCfR0719Fkc2gaF9rvX41w_c8zjL61xQtiaCz47I,351
|
2
2
|
pyaatlibs/aatapp.py,sha256=2oTnHnTCd4oIk_Nb218S3rO6nQfujxfVOLbQM1jeAhA,8742
|
3
3
|
pyaatlibs/activitystatemachine.py,sha256=We5noxBtskgMUsdBOA34e8Rze8K-vuheuSBjL4RUo8Q,300
|
4
4
|
pyaatlibs/adbutils.py,sha256=SV7N8UyC8bypNN58R63TkEu7R1ZHw-bQRedphcKHqjU,15431
|
@@ -7,7 +7,7 @@ pyaatlibs/argutils.py,sha256=6jOccgQlftmhUEGc3dAZ9-j0Mdg45jrhAGE-CylYjno,451
|
|
7
7
|
pyaatlibs/audiofunction.py,sha256=7Lm_-dG88mK8ETRmu--vIyzXMPVPFiUbdwJmB4PQn9g,9640
|
8
8
|
pyaatlibs/audiosignalframelogger.py,sha256=K0byfkpPAoMNNl6YdyoSGSgWbYPK1m0cLpQIPkeQlto,1446
|
9
9
|
pyaatlibs/audiothread.py,sha256=GOEHPFtEK-P8SQNdgWeDxnHcs_vic2kTN68UCjWUiLM,6548
|
10
|
-
pyaatlibs/audioworker.py,sha256=
|
10
|
+
pyaatlibs/audioworker.py,sha256=Tt_JtzZRXleCjrLXkHzlYfSKrfeEqAqlERzaDHZrIj8,26998
|
11
11
|
pyaatlibs/logcatlistener.py,sha256=0Dz5wM1qOsxn-KcHspD2nCJnVu5g7rzbk5ycEDvxG08,6213
|
12
12
|
pyaatlibs/logger.py,sha256=13Kx86hzFTbynWG5hKrWiCsT8gYk0-6ER98aOLiMJfY,5224
|
13
13
|
pyaatlibs/signalanalyzer.py,sha256=F1TiLAqqSHLpm4KgslRgu7hjj4iRX1qyCZMDI21oxls,306
|
@@ -15,11 +15,11 @@ pyaatlibs/signalmatcher.py,sha256=6A4mLf6GLbQzdM0wFbHqDfyWvgpZRci90kaOrLeV8B0,18
|
|
15
15
|
pyaatlibs/timeutils.py,sha256=yEgZGcHf_ASyXr0Mcef0toEa4zXX4j3FyQayaF1sN8I,2613
|
16
16
|
pyaatlibs/trials.py,sha256=hSYIvR1vsEqfu20eLDeh3oDCCTWvHQcvS6LKfScLB30,2469
|
17
17
|
pyaatlibs/apk/audiofunctionsdemo.apk,sha256=GG06POXrPOphMNsm5pD4XPfzVF8FXQ1ruupJFO2V8iQ,3205247
|
18
|
-
pyaatlibs/apk/audioworker.apk,sha256=
|
18
|
+
pyaatlibs/apk/audioworker.apk,sha256=iOrkwKLupevx8ThKFLYoAmSIlHXpLmZwybPkekL_6qE,28920391
|
19
19
|
pyaatlibs/tests/audioworker_test.py,sha256=OPGKrV10zw2UjyrBP55EWTe4838M40JHtmMIJnddnOo,21123
|
20
20
|
pyaatlibs/tests/conftest.py,sha256=Ng_ClpNsY-62bo8O0zCl702jy9AcwdteakJ1vhlOCTk,293
|
21
|
-
python_audio_autotest_3.10-1.5.
|
22
|
-
python_audio_autotest_3.10-1.5.
|
23
|
-
python_audio_autotest_3.10-1.5.
|
24
|
-
python_audio_autotest_3.10-1.5.
|
25
|
-
python_audio_autotest_3.10-1.5.
|
21
|
+
python_audio_autotest_3.10-1.5.7.dist-info/LICENSE,sha256=z8d0m5b2O9McPEK1xHG_dWgUBT6EfBDz6wA0F7xSPTA,11358
|
22
|
+
python_audio_autotest_3.10-1.5.7.dist-info/METADATA,sha256=jDF2VPVDs0ZnnhABaHeXBS7TBZhl4UZSPySxLCLCRgg,4550
|
23
|
+
python_audio_autotest_3.10-1.5.7.dist-info/WHEEL,sha256=eOLhNAGa2EW3wWl_TU484h7q1UNgy0JXjjoqKoxAAQc,92
|
24
|
+
python_audio_autotest_3.10-1.5.7.dist-info/top_level.txt,sha256=MyCr1MMMQB2sjxyhlZSJPG4Fx10ya00APmhY7r1fSoQ,10
|
25
|
+
python_audio_autotest_3.10-1.5.7.dist-info/RECORD,,
|
{python_audio_autotest_3.10-1.5.5.dist-info → python_audio_autotest_3.10-1.5.7.dist-info}/LICENSE
RENAMED
File without changes
|
File without changes
|