How to make online streaming video player | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How to make online streaming video player

i wanna create my online streaming site like youtube how to make video player look and work like youtube

20th Mar 2017, 8:38 PM
Akib Saifi
Akib Saifi - avatar
1 Answer
+ 1
correct me if I'm wrong since I'm a beginner too but you can make one using html, css, JavaScript for client-side just as any other website and you can use PHP, python or ruby for server side. YouTube used to use Adobe Flash but they switched to html recently. You can use simple html tag <video></video> to put up a video and then use css and html to make it look beter. <video controls> <source src="http://www.sololearn.com/uploads/video.mp4" type="video/mp4"> <source src="http://www.sololearn.com/uploads/video.ogg" type="video/ogg"> Video is not supported by your browser </video>
21st Mar 2017, 12:39 PM
theBlueGHOST
theBlueGHOST - avatar