
Copy link to clipboard
Copied
Hi there!
I'm not a professioal webmaster and not used to many technical issues, so please forgive me any stupid questions here. I'm the current and temporarily webmaster of the website [removed]. I got the order to implement a video-widget to play an introductional video on the homepage. While I haven't done something like that before - just know that Adobe flash player is usually used for that - I decided to come up with this question here. I hope you can help me out with giving me a short description of the process and thank you in advance. David
1 Correct answer
You can embed a video on a website with just HTML and JavaScript at this point. Also, Flash Player is going away at the end of 2020, so putting Flash content on your website is not a good investement in time or energy at this point.
A quick google search for "embed a video on a website" turns up a bunch of tutorials and options. Like other folks have noted, using Youtube or Vimeo to host a video, and then just copying and pasting their embed code is probably the easiest option.
Copy link to clipboard
Copied
You can't embed the player in a website. It's an "End User" plug-in. You can embed Flash content, but it's up to the visitor to play it.
As far as widgets go, you'd be best to ask in the Dreamweaver forum how to implement that.

Copy link to clipboard
Copied
Thx, that was very helpful. I'm going to check out the dreamweaver forum to learn how to implement the widget I need. If you're interested in how it worked out drop by and have a look at it on my site [removed] ! 😉
Copy link to clipboard
Copied
Another option is to upload your video to a site like YouTube or Vimeo. You can then insert the embed code of the video into your sites web page.
Copy link to clipboard
Copied
You can embed a video on a website with just HTML and JavaScript at this point. Also, Flash Player is going away at the end of 2020, so putting Flash content on your website is not a good investement in time or energy at this point.
A quick google search for "embed a video on a website" turns up a bunch of tutorials and options. Like other folks have noted, using Youtube or Vimeo to host a video, and then just copying and pasting their embed code is probably the easiest option.
Copy link to clipboard
Copied
Agree with this answer. Embeding a video is the best option. I did the same.
Copy link to clipboard
Copied
"Embeding a video is the best option..."
Except for users behind corporate firewalls that have had their YouTube access blocked.
HTML5 <video> with MP4 works for everyone on all devices.
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML5 Video</title>
<video width="320" height="240" controls>
<source src="my_movie.mp4" type="video/mp4">
</video>
</body>
</html>
