The viddler theme code is outputting hardcoded autoplay=t!
Odd as the theme function gets the $autoplay setitng passed in as an argument to the theme function anyway.
$output .= '<embed src="' . $embedurl .'" width="545" height="349" data="'. $player .'" type="application/x-shockwave-flash" allowScriptAccess="always" flashvars="autoplay=' . ($autoplay ? 'true' : 'false') . '" allowFullScreen="' . ($fullscreen ? 'true' : 'false') . '" name="viddler_" wmode="transparent"></embed>';
is the working code.
Comments
Comment #1
buddai also fixed the id and name fields being a bit unfinished. correct theme function is now:
Comment #2
locomo commentedthis is good.. worked for me
Comment #3
locomo commentedactually i just realized that width and height are still being hardcoded in the embed tag.. here's the fixed version:
Comment #4
tomdisher commentedI know this is over a year later, but the solution in #3 worked great.
This should be in the module... can we get a commit?
Comment #5
BassistJimmyJam commentedThis has been committed. I had to make a few changes to support the new return format of Viddler's oEmbed service.
Comment #6
BassistJimmyJam commented