Copyright © 2012 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
is there any way for this?
So here's what I had to do to add a thumbnail to a playlist:
I uploaded an image to the playlist.
During the loop of the available playlists, I run through the actual playlist data and look for an image.
When I find an image, I store the image URL and just spit that out.
It's a little messy... but it works until I hear of something better.
if ($playlist_thumb_url != "") {
echo '<img src="' . $playlist_thumb_url . '" />';
} else {
echo '<img src="/_images/placeholder.png" />';
}
echo '</a>';
echo '<h4>' . $playlist->name . "</h4>";
echo '</li>';
// Clear Playlist
$playlist_thumb_url = "";
}
}
We are using the playlist functionality as a sort of 'album' based collection for videos. Since this is the only way (that I'm aware of) to do something like this, I'd like to know if it's possible to:
1) Add a thumbnail to a represent a playlist...
-or-
2) Extend the CE version of Kaltura to allow this...
I'd appreciate any help or advice on accomplishing this.
Thanks in advance