Carlos Blanco
Carlos Blanco

Reputation: 8762

embed vs flash video player for displaying video

I want to show video in one of my pages of an enterprise application. I was thinking on using a flash based player such as Flowplayer. Then I learnt that I could also use the EMBED tag.

The default browser for accessing my web app is IE - whatever version. I also supose there should be some users using other browsers.

My question is are the drawbacks on each and what have you used before to show video?

Upvotes: 0

Views: 229

Answers (2)

Ilia K.
Ilia K.

Reputation: 4962

I would highly recommend using framework which supports HTML5 video tag with flash or other format fallback for old browsers. Examples are numerous and include VideoJS, FlareVideo and others. This way you would depend on (name-your-disadvantages-like-insecure-and-proprietary) technologies only for older browsers and support a newer ones well. The result is fewer problems you face when the management decides to upgrade the clients.

Upvotes: 2

Quazi
Quazi

Reputation: 502

embedding offers the easiest solution. The iframe code is simple and does the job

<iframe src="http://(your video source here)" width="400" height="380" frameborder="0">   </iframe>

Upvotes: 2

Related Questions