pkalogiros / AudioMass

Free full-featured web-based audio & waveform editing tool
1.95k stars 227 forks source link

(Not issue) Fix "audiomass-server.py" for Python 3 #79

Open DeadLyBro opened 11 months ago

DeadLyBro commented 11 months ago

You can fix with this code:

import http.server
import socketserver
PORT = 5055
Handler = http.server.SimpleHTTPRequestHandler
httpd = socketserver.TCPServer(("", PORT), Handler)
print("serving at port", PORT)
httpd.serve_forever()

If not work you can use this:

py -3 -m http.server 5055

(Note: Make sure you are in the src folder.)