Video in css | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Video in css

How do i get a video full link from browse into code playground. I have been trying so but in vain

12th Feb 2020, 5:28 PM
Dove
Dove - avatar
7 Answers
+ 5
Can you show whatever you have tried.
12th Feb 2020, 7:33 PM
A͢J
A͢J - avatar
+ 3
Hello, when you're on the video in the browser, try right click it and in the menu choose if it is proposed to "copy the link/adress of the video" and the paste it in your src="***" , but it is not always possible I think . YouTube propose link to embed. if you try from such a platform,the share button give you access to "copy link". Don't forget to check license of the media. As you wrote your src it's like the file was local storage or something.If you refer to a link you should have something with Https... You can try that way. Have a good day.
13th Feb 2020, 5:45 AM
EmmanueLZ.
EmmanueLZ. - avatar
+ 2
I'm using andriod not pc
13th Feb 2020, 10:40 AM
Dove
Dove - avatar
+ 2
Embed works on pc. Thanks alot have a nice day( Emmanuel Z.(Zé)
13th Feb 2020, 10:42 AM
Dove
Dove - avatar
+ 2
Oh, ok I also experimented such problem between desktop version and app (but with the whole code not functioning and in the other way , code in the Android app and gives nothing when opening on sololearn/pc). About importing media in the app, I read some answers like you could use a service like Google drive or other from the cloud services (which allow you to share your content as a link) to put your media on and then gives the link to it in your code. I tried with a picture but it has not worked for me...
13th Feb 2020, 2:53 PM
EmmanueLZ.
EmmanueLZ. - avatar
+ 1
!DOCTYPE html> <html> <body> <video width="400" controls>  <source src="mov_bbb.mp4" type="video/mp4">  <source src="mov_bbb.ogg" type="video/ogg"> Your browser does not support HTML5 video. </video> <p> Video courtesy of <a href​=​"https://www.bigbuckbunny.org/" target="_blank">Big Buck Bunny</a>. </p> </body> </html>
12th Feb 2020, 9:39 PM
Dove
Dove - avatar
+ 1
I will try that thanks so much Emmanuel Z.(Zé)
13th Feb 2020, 7:12 PM
Dove
Dove - avatar