Hi,

my emebd tag is not rendered as a Player, it's just clear text. What's wrong?

Comments

JW Player’s picture

Status: Active » Postponed (maintainer needs more info)

@josBln,

Could you provide some more detail?

Do you have a link to where this occurring? Can you describe the steps you took to embed it?

Thanks.

verta’s picture

Subscribe, this is happening on non-admin roles. Since it's not an input filter, this is hard to troubleshoot.

JW Player’s picture

I will need some more info. Non-admin roles see it correctly on my local install.

verta’s picture

I think it was an unfortunate combination of input filters and CKedit profiles and the permissions matrix.

JW Player’s picture

Oh, is it working for you now?

rrrob’s picture

I'm seeing this too if I put the embed tag in a CCK textarea field. It will render properly if the tag is put into the standard body field though. Is there a way to force it to render in CCK fields too?

JW Player’s picture

The module currently only supports the standard body field. Proper CCK support is something we're looking into.

I'm not sure if it's an alternative for you, but you may be able to use the theme function provided by the module which generates player embed code.

It would look something like the following:

<?php
$flash_vars = array(
  'file' => 'http://path/to/video.mp4',
  'image' => 'http://path/to/image.jpg'
);
print theme("jwplayermodule_render_player", "your_config_name", $flash_vars);
?>