Skip to content

Instantly share code, notes, and snippets.

@dmlap
Created September 22, 2014 13:49
Show Gist options
  • Save dmlap/c88c5f902ccf1677548c to your computer and use it in GitHub Desktop.
Save dmlap/c88c5f902ccf1677548c to your computer and use it in GitHub Desktop.
Loading a video into a player.
// change the video source URL
player.src({
src: 'http://example.com/movie.mp4',
type: 'video/mp4'
});
// Safari requires you to call load after loading a new video source
player.load();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment