tennies
tennies
+1 I'm also experiencing this problem. I used the hieroglyph quickstart and threw some random text into a couple slides and the text on all the slides starts from the...
hmm so what inspired you to change your mind? What do you really get from having a compiled soundfile module?
@marinasaizalia I believe you want to use this one: 38 ASIO Fireface USB, ASIO (22 in, 22 out)
I get the same result as @mgeier on my debian box. When I change the code to ``play()`` instead, it works without issue. However, when I move the ``import sounddevice``...
@pvizeli It would be helpful if you could at least provide a log of what errors you're getting and possibly a hosted docker file for us to test with. Help...
Hi @bradricketts, that code example got indexed from some arbitrary time in my account..I never posted that code and that particular version was a WIP that may not be completely...
I also ran into this issue when using the virtual_io functions. libsndfile seems to assume that virtual io files are always seekable.
True, but what about in read only situations? I only care about reading a non-seekable file object, are there similar seek requirements for that case? **EDIT** The funny thing is...
@mikeyy Thanks for the fix! But why not submit a PR?
From what I can see, closefd doesn't work at all. For example: ``` >>> import soundfile as sf >>> f=open('test.wav', 'rb') >>> ff = sf.SoundFile(f) >>> f.closed False >>> ff.closed...