I'm trying to upload a wmv file in server folder and name in database and I want to display the length of that file in seconds.
<audio id="myaudio" controls>
<source src="res->voice_path" type="audio/wmv">
<source src="res->voice_path" type="audio/ogg">
Your browser does not support the audio element.
</audio>
<script>
var vid = document.getElementById("myaudio");
function myFunction() {
alert(vid.duration);
}
</script>
Here, I can get the audio length in alert box but I need that to echo how to take that value into a variable and echo that in CodeIgniter.
The above code I used in a view.