Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 998 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 998 Bytes

Talk it out

Next steps

  1. POST a random Javascript Blob to the server

    • Requires hooking into the <form> I just added to Audio Recorder.html and passing the {% csrf_token %}
    • I'll need to put the blob in the <form> data, I know code for that exists somewhere
  2. Change files listed from server to be <audio> tags

    • This is a change to the templates.v1.list.html
  3. Integrate the webaudiodemos sample code with POSTs to the server

    • To handle POSTs, I need a url that routes to a POST handler method
      • This is currently happening in views.list_saved_files(request)
    • That handler sends (references to ?) the files to the template via render_to_response()

Borrows from