| how to add logo in video using HTML ?
|
m4zt3r

msg:4117451 | 9:16 pm on Apr 17, 2010 (gmt 0) | based on what ive seen some website, their videos contains logos on their player, ive tried to see the page source and i see the link of logo, ive try to copy and phaste to HTML online editor and remove that logo link, the logo disappeared... im just starting to study HTML, anyone can teach me on how to attach a logo to a video using HTML code... tnx in advance!
|
rocknbil

msg:4118172 | 3:51 pm on Apr 19, 2010 (gmt 0) | The ability to include a watermark over the entire duration of a video would have to be something integrated into the player itself. That is, the Flash player you're using (.swf) has to have that built into it's functionality. If you find one that does that, it would pass the variable to the Flash object as a query string <param name="movie" value="player.swf?file=my-video.flv&watermark=mylogo.gif"> or as a flashVars variable <param name="flashVars" value="file=my-video.flv&watermark=mylogo.gif"> Or more gracefully/efficiently, using SWFObject myVideo.addParam("flashVars", "file=my-video.flv&watermark=mylogo.gif"); myVideo.addVariable("file", "my-video.flv"); myVideo.addVariable("watermark", "mylogo.gif"); None of that will "do anything" if the player itself doesn't support it.
|
|
|