Thanks so much for that feedback.  The ONLY reason why I needed to use 
videojs is so that I can start and end at a specific time within a 
video.  Does the built in rails paradigm have this option?

example code:

 var endtime = 10505.89+10;
    myPlayer= document.getElementById('example_video_1');
    myPlayer.addEventListener('loadeddata', function(){
      example_video_1.currentTime = 10505.89;
      example_video_1.play();
      myPlayer.addEventListener('timeupdate', function(){
        if (example_video_1.currentTime >= endtime) {
          example_video_1.pause();

-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to rubyonrails-talk+unsubscr...@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/rubyonrails-talk/1f51f8e53b9c657fbda4cf01ff3eeaa4%40ruby-forum.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to