Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jshelton committed Jun 23, 2019
1 parent dfeb1b0 commit cb7362c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions verifyVideo.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
var ffmpeg = require('fluent-ffmpeg');

ffmpeg('/Volumes/Seagate\ Backup\ Plus\ Drive/JS\ iPhone/IMG_5371.MOV')
.output('-')
.format('null')
.on('error', function(err) {
console.log('An error occurred: ' + err.message);
})
.on('end', function() {
console.log('Processing finished !');
})
.run();

0 comments on commit cb7362c

Please sign in to comment.