javascript - Vimeo embedded video custom controllers ( full sceen and volume control ) not working in media element js -
i'm using media element js player play you-tube , video embedded videos. both videos playing , vimeo custom controller bar fullscreen , volume control functions not working. can have advice this!
<video id="player2" width="640" height="360" > <source type="video/vimeo" src="http://vimeo.com/channels/staffpicks/45100844" /> </video> <script> $(document).ready(function() { $('#player2').mediaelementplayer({ alwaysshowcontrols: true, success: function (media, node, player) { } }); }); </script>
i'm using 'froogaloop2.min.js' vimeo controller bar
you must use code
<video id="player2" width="640" height="360" > <source type="video/vimeo" src="http://vimeo.com/45100844" /> </video>
including froogaloop2.min.js show vimeo controller bar.
this works @ end. should work @ end, too.
Comments
Post a Comment