How do I get One of my Videos from my internal phone storage to play? and the same thing for internal phone storage for images?I have what I think code should look like but for some reason its not playing. My Codes Below | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I get One of my Videos from my internal phone storage to play? and the same thing for internal phone storage for images?I have what I think code should look like but for some reason its not playing. My Codes Below

Video code ____________ <video controls> <source src="Path/storage/emulated/0/Mobizen/Sample.mp4" type="video/mp4"> </source> </video> Picture code _____________ <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <img src="Path:/storage/emulated/0/Pictures/LearnHTML/Certificate.jpg" height="160px" width="256px" alt=""></img> </body> </html>

20th Oct 2016, 2:43 AM
Wilde Night
Wilde Night - avatar
2 Answers
+ 1
There are no closing tags for source, img , audio and video . //same folder <img src="smiley.gif"alt="Smiley face"height="42" width="42"> //different folder(fullpath/filename) <audio src="c/desktop/smiley.mp3"alt="Smiley face"height="42" width="42"> //url <video src="http:\\abc.com\smiley" alt="Smiley face"height="42" width="42"> alt means alternative name height and width of box in which the img, audio and video is displayed
21st Oct 2016, 9:03 PM
Vipra Chudasama
Vipra Chudasama - avatar
0
ok thx
23rd Oct 2016, 1:26 AM
Wilde Night
Wilde Night - avatar