raspberry pi support

master
Drew Bednar 3 years ago
parent 27ae98347e
commit 8c7309cb61

@ -1,3 +1,7 @@
# learn_audio
A repo dedicated to audio experiments
# Requirements
One the Ubuntu raspberrypi 20.04 server I needed to have `sudo apt-get install libasound2-dev` installed before run `pip install -r requirements.txt`.

@ -12,7 +12,7 @@ wave_file_path = sys.argv[1]
if not wave_file_path.endswith('.wav'):
raise ValueError("File must have .wav file extension.")
(HOST,PORT)=('localhost',9000)
(HOST,PORT)=('rospi.runcible.io',9000)
s=socket.socket(socket.AF_INET,socket.SOCK_STREAM); s.connect((HOST,PORT))
with open(wave_file_path, 'rb') as wave_file:

Loading…
Cancel
Save