Changeset cea30b8 for python/aubio/aubioclass.py
- Timestamp:
- Nov 1, 2007, 3:14:29 PM (17 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 100f950
- Parents:
- d1ec8cb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/aubio/aubioclass.py
rd1ec8cb rcea30b8 43 43 else: 44 44 self.file = new_aubio_sndfile_ro(filename) 45 if self.file == None: raise(ValueError, "failed opening file") 45 46 def __del__(self): 46 del_aubio_sndfile(self.file)47 if self.file != None: del_aubio_sndfile(self.file) 47 48 def info(self): 48 49 aubio_sndfile_info(self.file)
Note: See TracChangeset
for help on using the changeset viewer.