Skip to content

Commit

Permalink
fix method name
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKreil committed Jul 28, 2017
1 parent 44e51de commit d0d9d59
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions bin/lib/video.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ function Video(filename, player) {

me.play = cb =>
player.stop(() =>
player.play(filename, () => cb())
player.playLoop(filename, () => cb())
)

me.generateThumbnail = cb =>
Expand All @@ -42,8 +42,6 @@ function Video(filename, player) {
return me;
}



module.exports = Video;

function getFrameCount(filename, cb) {
Expand Down

0 comments on commit d0d9d59

Please sign in to comment.