Skip to content

Django server that renders a page to record audio in browser, then facilitates uploading and downloading that audio file.

Notifications You must be signed in to change notification settings

suresach/Django-AudioFiles

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Django server that renders a page to record audio in browser, then facilitates uploading and downloading that audio file.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 95.7%
  • JavaScript 2.1%
  • HTML 1.4%
  • Other 0.8%