Changeset d62906b in ammosreader for sample_scripts
- Timestamp:
- 06/30/22 16:34:12 (3 years ago)
- Branches:
- AmmosSource, guix
- Children:
- ee95332
- Parents:
- 6d0f203
- Location:
- sample_scripts
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sample_scripts/audio_reader.py
r6d0f203 rd62906b 30 30 frame_rate=22050, 31 31 channels=1) 32 print("Start playing audio") 32 33 play(data) -
sample_scripts/iqdw_reader.py
r6d0f203 rd62906b 1 #!/usr/bin/env python32 3 1 import sys 4 import os5 2 6 3 from ammosreader.AmmosIFReader import AmmosIFReader … … 20 17 print("Frequencies", dat_file.container.frequencies()) 21 18 print("Frame types:", dat_file.container.frame_types()) 22 print(" Frame sizes:", dat_file.container.frame_sizes())19 print("Total frame sizes:", sum(dat_file.container.frame_sizes())) 23 20 print("Homogenic:", dat_file.container.is_homogenic())
Note:
See TracChangeset
for help on using the changeset viewer.