简体   繁体   中英

HTML5 - Video tags play video but not audio

I am using a video tag for importing videos using PHP. But I am facing an audio issue. I have used so many codes like:

<video controls> <source src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4" ></video>

<video controls src="https://www.w3schools.com/html/mov_bbb.mp4" type="video/mp4" ></video>

I think that the problem may lies on your speaker. This is because I tried running your code and the video and the audio seems to work perfectly fine. Hope this helps!

Try this code on your browser to check if the browser support the audio video codec format.

<video controls width="550">

    <source src="https://www.w3schools.com/html/mov_bbb.mp4"
            type="video/mp4">

    Sorry, your browser doesn't support embedded videos.
</video>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM