I am using Ver 5 RC1 and Video-head module, page_title module

My auto play is not working. ( i tried only with Google Video) i have to click embed play button to start buffering and then the play starts - my code in the module as follows

<param name="FlashVars" value="baseURL='. $base_url .'&videoFile='. $file .'&autoPlay=true&bufferLength=5" />' . "\n"

2 ) How to remove the <em> tag from the video title on play node because it is showing as <em>Video Title</em> in the page title

Please try and see both at http://www.findkerala.com/node/175/play

Note the<em> Hot Funny Girl</em> in the page title

----

Find Kerala - all about Kerala, God's own country

Comments

fax8’s picture

1) Change this line:

<param name="FlashVars" value="playerMode=embedded" />'

to

<param name="FlashVars" value="playerMode=embedded&autoPlay=true" />'
fax8’s picture

Status: Active » Fixed

2) change

    drupal_set_title(t('Playing') . ' ' . theme('placeholder', $node->title));

to

    drupal_set_title(t('Playing') . ' ' . check_plain($node->title));

And this should fix your problems.

Fabio

incom’s picture

Status: Fixed » Closed (fixed)

Thanks Fabio It is working.