View Single Post
Old 03-05-2014, 04:27 AM   #3
ceblac
Junior Member
ceblac began at the beginning.
 
Posts: 7
Karma: 10
Join Date: Mar 2014
Device: i-pad mini, i5
Quote:
Originally Posted by mzmm View Post
if you find the audio element in the html and add the controls attribute i'd imagine it would give you a scrubber and some volume controls. i don't have juto so can't check, but you should look for something like

Code:
<audio>
    <source src="your_audio_file.mp4" type="audio/mpeg">
</audio>
and change it to

Code:
<audio controls>
    <source src="your_audio_file.mp4" type="audio/mpeg">
</audio>
this sounds to easy to be true --- i will try it and let you know! THANKS
ceblac is offline   Reply With Quote