I’m running dash player in drupal 6x .
To get display the player I’m using meta tag [video] and all works fine.
The only issue is that player ignore height and size replacement patterns.
I’m using following code :
[video:autostart=false: width=320: height=240]
but it doesn’t affect the size at all.

I’ve tried to walk around with php snipet:

$params['width'] = '320';
$params['height'] = '240';
print dashplayer_get_player($params);

It fixe the size but it shows empty player without media.
I presume that function “dashplayer_get_player” expect some $param video value.

Comments

platonik’s picture

Try using this code:

<?php
$params ['node'] = $node->nid;
$params['width'] = '320';
$params['height'] = '240';
print dashplayer_get_player( $params );
?>