Changeset 72b50cd in ammosreader
- Timestamp:
- 06/28/22 13:11:17 (3 years ago)
- Branches:
- AmmosSource, guix
- Children:
- 6059ec7
- Parents:
- 57c81ef
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
ammosreader/AmmosAudioReader.py
r57c81ef r72b50cd 145 145 print("Can not read all", total, "bytes of data body") 146 146 return None 147 print([hex(c) for c in byte_string])147 # print([hex(c) for c in byte_string]) 148 148 return byte_string 149 149 -
ammosreader/AmmosContainer.py
r57c81ef r72b50cd 15 15 16 16 def size(self): 17 len(self.global_frames)17 return sum([each.global_frame_header.frame_length for each in self.global_frames]) 18 18 19 19 def frequencies(self): -
sample_scripts/audio_reader.py
r57c81ef r72b50cd 17 17 18 18 dat_file.read_all_frames_left() 19 print(dat_file.container )19 print(dat_file.container.size()) -
sample_scripts/iqdw_reader.py
r57c81ef r72b50cd 19 19 20 20 dat_file.read_all_frames_left() 21 print(dat_file.container )21 print(dat_file.container.size()) 22 22 23 for each in dat_file.container.global_frames:24 print(each)23 # for each in dat_file.container.global_frames: 24 # print(each)
Note:
See TracChangeset
for help on using the changeset viewer.