Skip to content

Commit

Permalink
Fix ffprobe example
Browse files Browse the repository at this point in the history
  • Loading branch information
Oshin Karamian committed Oct 18, 2015
1 parent a415251 commit 19a8021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/metadata.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
var ffmpeg = require('../index');

// make sure you set the correct path to your video file
ffmpeg.ffprobe('/path/to/your_movie.avi',function(metadata, err) {
ffmpeg.ffprobe('/path/to/your_movie.avi',function(err, metadata) {
console.log(require('util').inspect(metadata, false, null));
});

0 comments on commit 19a8021

Please sign in to comment.