What I Learned - 6/15

Sublime Video has a timeUpdated event that fires as the video plays. To capture this event use the following code.

sublime.ready(function() {
  sublime.player('< your_video_player_id >').on({
    timeUpdate: < your_function_name >
  });
});

Using some basic Javascript it is possible to create simple looping functionality with Sublime Video using the timeUpdate event combined with user-selected start and stop times.  

The Shortlist plugin for ExpressionEngine  has "attribute" functionality for adding external content to lists, but it does not work for internal content. The attributes give context to the external link that is being added to a list (like a favorites list).

Previous
Previous

What I Learned Last Night - 6/26

Next
Next

What I Learned - 6/13