diff options
| author | Ha Thach <[email protected]> | 2025-07-09 11:48:01 +0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-07-09 11:48:01 +0700 |
| commit | bb07a8221189760d0f07212c39caad7384c55205 (patch) | |
| tree | 2a4bd2e5884eaf44e3926717975c60949c8d98d8 /examples/device/audio_test/src/plot_audio_samples.py | |
| parent | 42de71f3d00a76c96dac484343625f0e871ad26f (diff) | |
| parent | 961ea73e55a54d77882ebc3a40fbacc3bd1899e3 (diff) | |
Merge pull request #3150 from HiFiPhile/xfer_isr
audio: manage ISO transfer in ISR
Diffstat (limited to 'examples/device/audio_test/src/plot_audio_samples.py')
| -rwxr-xr-x | examples/device/audio_test/src/plot_audio_samples.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/device/audio_test/src/plot_audio_samples.py b/examples/device/audio_test/src/plot_audio_samples.py index ea6aa661e..2be8948ea 100755 --- a/examples/device/audio_test/src/plot_audio_samples.py +++ b/examples/device/audio_test/src/plot_audio_samples.py @@ -12,11 +12,11 @@ if __name__ == '__main__': # print(sd.query_devices()) fs = 48000 # Sample rate - duration = 100e-3 # Duration of recording + duration = 3 # Duration of recording if platform.system() == 'Windows': # MME is needed since there are more than one MicNode device APIs (at least in Windows) - device = 'Microphone (MicNode) MME' + device = 'Microphone (MicNode), Windows WASAPI' elif platform.system() == 'Darwin': device = 'MicNode' else: |
