Tech
Forums
Jobs
Books
Events
Interviews
Live
More
Learn
Training
Career
Members
Videos
News
Blogs
Challenges
Certification
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Video/ Audio Player in HTML5
WhatsApp
Abhishek Jaiswal
5y
3.8
k
0
0
25
Blog
Video/ Audio Player in HTML5
Tags Used
For video player
<
video
controls
>
<
source
src
=
"Full path of your clip with extension"
>
</
video
>
For audio player
<
audio
controls
>
<
source
src
=
"Full path of your clip with extension"
>
</
audio
>
Through the simple use of these tags we can simply build our own players, here's the code :
Video Player In HTML5
<
html
>
<
head
>
<
title
>
Video Player|Abhishek Jaiswal
</
title
>
</
head
>
<
body
>
<
video
width
=
"500"
height
=
"250"
controls
>
<
source
src
=
"Full path of your clip with extension"
>
// ex:
<
source
src
=
"video.mp4"
>
</
video
>
</
body
>
</
html
>
Audio Player In HTML5
<
html
>
<
head
>
<
title
>
audio Player|Abhishek Jaiswal
</
title
>
</
head
>
<
body
>
<
audio
controls
>
<
source
src
=
"Full path of your clip with extension"
>
// ex:
<
source
src
=
"audio.mp3"
>
</
audio
>
</
body
>
</
html
>
Up Next
Videojs Free Open Source Video Player for HTML 5
Ebook Download
View all
Frontend Developer Interview Questions and Answers
Read by 940 people
Download Now!
Learn
View all
Membership not found