You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I encountered an error while using the example code provided in the documentation. I'm on Windows 10 22H2.
python3.11.8
When the code reaches this line with AudioFile("1.wav") as f:
It seems like Python just crashed because any print statements I added afterwards didn't output anything.
from pedalboard.io import AudioFile
with AudioFile("1.wav") as f:
print(f.duration) # => 30.0
print(f.samplerate) # => 44100
print(f.num_channels) # => 2
print(f.read(f.samplerate * 10))
print('finish')
The text was updated successfully, but these errors were encountered:
Hello, I encountered an error while using the example code provided in the documentation. I'm on Windows 10 22H2.
python3.11.8
When the code reaches this line
with AudioFile("1.wav") as f:
It seems like Python just crashed because any print statements I added afterwards didn't output anything.
The text was updated successfully, but these errors were encountered: