m creating a website for an org on campus and need to display their youtube playlist on a page... currently they just upload each video manually to the website and it's just a GIANT scroll down page.
I want to change this to some sort of better looking and easy management system.
I used this code and it works in html...but when I try to intertwine it in my View using CakePHP nothing comes up. Any idea how to fix this code to get it to display or know a better system?
This code would display the first video in a large, center piece and then to the right of it you would have tiny thumbnails that were scrollable to see all videos listed in that feed.
Code
<script type="text/javascript">
$(function() {
$("#youtube").osmplayer({
width: '100%',
height: '600px',
playlist: 'http://www.youtube.com/user/Mizzouwellness/feed'
});
});
</script>
<video id="youtube"></video>