V Venom Seasoned Veteran Joined Sep 12, 2012 Messages 3,798 Reaction score 0 FP$ 0 Nov 9, 2012 #1 I uploaded a video to my webserver and want some custom emded code for it, can you help. (bandwith not a problem) thanks.
I uploaded a video to my webserver and want some custom emded code for it, can you help. (bandwith not a problem) thanks.
J Greig Paragon Joined Oct 11, 2012 Messages 1,093 Reaction score 0 FP$ 59 Nov 10, 2012 #2 Try this: Code: <video width="320" height="240" controls="controls"> <source src="yourmovie.mp4" type="video/mp4"> <object data="yourmovie.mp4" width="320" height="240"> <embed src="yourmovie.swf" width="320" height="240"> </object> </video> Depending on your file name and file extension edit these: <source src="yourmovie.mp4" type="video/mp4"> <object data="yourmovie.mp4" width="320" height="240"> <embed src="yourmovie.swf" width="320" height="240"> Click to expand... Alternatively, you can try: Code: <embed src="intro.swf" height="200" width="200"> Which will just display the video without controls. Be sure to change the height and width to your needs.
Try this: Code: <video width="320" height="240" controls="controls"> <source src="yourmovie.mp4" type="video/mp4"> <object data="yourmovie.mp4" width="320" height="240"> <embed src="yourmovie.swf" width="320" height="240"> </object> </video> Depending on your file name and file extension edit these: <source src="yourmovie.mp4" type="video/mp4"> <object data="yourmovie.mp4" width="320" height="240"> <embed src="yourmovie.swf" width="320" height="240"> Click to expand... Alternatively, you can try: Code: <embed src="intro.swf" height="200" width="200"> Which will just display the video without controls. Be sure to change the height and width to your needs.