source: python/demos/demo_pysoundcard_play.py @ cb76f5d

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5sampleryinfft+
Last change on this file since cb76f5d was 6d8db80, checked in by Paul Brossier <piem@piem.org>, 8 years ago

python/demos/demo_pysoundcard_*: update to pysoundcard 0.5.2 (closes #42)

  • Property mode set to 100755
File size: 537 bytes
Line 
1#! /usr/bin/env python
2
3def play_source(source_path):
4    """Play an audio file using pysoundcard."""
5
6    from aubio import source
7    from pysoundcard import Stream
8   
9    hop_size = 256
10    f = source(source_path, hop_size = hop_size)
11    samplerate = f.samplerate
12
13    s = Stream(samplerate = samplerate, blocksize = hop_size)
14    s.start()
15    read = 0
16    while 1:
17        vec, read = f()
18        s.write(vec)
19        if read < hop_size: break
20    s.stop()
21
22if __name__ == '__main__':
23    import sys
24    play_source(sys.argv[1])
Note: See TracBrowser for help on using the repository browser.