I have a problem with the video on YouTube, the overlay has an opacity of 0.8, but in Chrome, the YouTube video also gets an opacity so you can see it.
I use swfobject.embedSWF and ProtoTube addon for this task, but I can not understand why this is happening, any ideas?
Function:
getVideoEmbed: function(wrapper) { var wrapperID = wrapper.identify(); var flashvars = { fs: this.options.fs, autoplay: this.options.autoplay, loop: this.options.loop, hd: this.options.hd, showinfo: this.options.showinfo, rel: this.options.rel }; var params = { wmode: "transparent", allowScriptAccess: "always", allowFullScreen: true, menu: false }; var atts = { }; swfobject.embedSWF(this.options.youtubeVideoUrl+this.videoID, wrapperID, this.options.playerWidth, this.options.playerHeight, "9", null, flashvars, params); },
An example problem URL can be found here: http://tinyurl.com/b48u39c (click the video playback link on the main image in chrome to see the problem)
source share