I was wondering if I can create a HTML file input of an audio blob using javascript/jQuery. I'm audio recording online and want to POST the recording along with other HTML form inputs once the user presses form submit.
Edit: Elaborating, I have an audio blob stored in session cache. I also have a HTML form with text and file inputs that already hold values. I want to bind or incorporate the blob into the form so it will be POSTed when the HTML form is submitted.
I could create a formdata from the existing HTML form and append the blob as a key/value, but this seems "dirty." I'm going with this for now, but it would be great if someone knows how to incorporate/bind a cached blob with an existing HTML form.
Any help would be great, thanks!