Video/ Audio Player in HTML5Abhishek Jaiswal6yPublished Nov 29, 2013, 12:00 AMUpdated Oct 21, 2019, 4:53 AM4.1k00Reactions×25BlogVideo/ 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> CommentsJoin the conversation! Your thoughts help the community grow.Sign in to leave a commentIt is the same account you read, post and publish with — and you will come straight back to this page.Sign inCreate an account
Join the conversation! Your thoughts help the community grow.