Changeset 72b50cd in ammosreader
- Timestamp:
- 06/28/22 13:11:17 (3 years ago)
- Branches:
- AmmosSource, guix
- Children:
- 6059ec7
- Parents:
- 57c81ef
- Files:
- 
      - 4 edited
 
 - 
          
  ammosreader/AmmosAudioReader.py (modified) (1 diff)
- 
          
  ammosreader/AmmosContainer.py (modified) (1 diff)
- 
          
  sample_scripts/audio_reader.py (modified) (1 diff)
- 
          
  sample_scripts/iqdw_reader.py (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      ammosreader/AmmosAudioReader.pyr57c81ef 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.pyr57c81ef 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.pyr57c81ef 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.pyr57c81ef 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.
  ![(please configure the [header_logo] section in trac.ini)](/playground/chrome/site/playground.png)
