I am using Francium voice recorder tool to record voice. When i click play button, below code is ran :
Fr.voice.export(function(url){
jQuery("#audio").attr("src", url);
jQuery("#audio")[0].play();
}, "URL");
restore();
on inspection i see audio element like below
<audio controls="" src="blob:https://example.com/33579f12-ee01-4dc2-9dda-82fb8d7d9307" id="audio"></audio>
Is there way to save this to a PHP server through <form>
?