homepage Welcome to WebmasterWorld Guest from 23.22.212.158
register, login, search, subscribe, help, library, PubCon, announcements, recent posts, open posts,
Pubcon Platinum Sponsor
Visit PubCon.com
Home / Forums Index / Code, Content, and Presentation / HTML
Forum Library : Charter : Moderators: incrediBILL & tedster

HTML Forum

    
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.

Global Options:
 top home search open messages active posts  
 

Home / Forums Index / Code, Content, and Presentation / HTML
rss feed

All trademarks and copyrights held by respective owners. Member comments are owned by the poster.
Terms of Service ¦ Privacy Policy ¦ Report Problem ¦ About
WebmasterWorld ® and PubCon ® are a Registered Trademarks of Pubcon Inc.
© Pubcon Inc. 1996-2012 all rights reserved