hi,

I hope that you will understand because I speak very bad english.

So i have a problem with playlist of Dash Media player.
I started to install FlashVideo Module, Dash Media player and FFMpeg.
Now i can upload my videos, which convert with FFmpeg and that i see with the player.

I would like install a playlist with my player. So i have followed the Dash Player in Drupal CMS: Step-By-Step Tutorial. But i doesn't work.

I run the dashplayer.getView using videos as the view_name.
Here's what i get :

Array
(
[total_rows] => 1
[nodes] => Array
(
[0] => stdClass Object
(
[nid] => 1228
[vid] => 1338
[type] => video
[status] => 1
[created] => 1241078504
[changed] => 1241078504
[comment] => 0
[promote] => 1
[sticky] => 0
[revision_timestamp] => 1241078504
[title] => Avatar 1
[body] =>
[teaser] =>
[log] =>
[format] => 3
[uid] => 1
[name] => admin
[picture] =>
[data] => a:1:{s:7:"contact";i:0;}
[play_counter] => 1
[0] =>
[last_comment_timestamp] => 1241078504
[last_comment_name] =>
[comment_count] => 0
[tags] =>
[taxonomy] => Array
(
)

[files] => Array
(
)

[node_counter] => 1
[body_value] =>
)

)

)

We can see that the resultat find my only video content name "Avatar 1" but i doesn't find the video avatar.flv which attache with this node.

Someone can tell me what is the problems ?

I'm sorry for my english.

Thanks for helps

Comments

shortcircuitcg’s picture

Im not sure how to fix what your talking about but the guy that created the dash player just put a very good tutorial up on how to install the dash player and use playlists. http://www.tmtdigital.com/node/37

platonik’s picture

If you follow that link there is a video tutorial about making a playlist with the Dash Player. The playlist is created by setting up a view and then importing that view with the player. The view should have the filters of the video content types you want to show up in your playlist.

Here is the code to set up the player and playlist, this can be set in a page body, block, or any text area:

<?php
$params[‘playlist’] = 'videos';
print dashplayer_get_player($params);
?>

Substitute 'videos' for the name of your view.