You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have suggest to you change this code in index.js
var params = [];
params.push('-show_streams', '-print_format', 'json', filePath);
var d = Deferred();
var info;
var stderr;
var ffprobe = spawn(opts.path, params);
to this, for ability to send parameters for ffprobe:
if( typeof opts.params == "undefined" )
opts.params = [ '-show_streams' ];
opts.params.push( '-print_format', 'json', filePath );
var d = Deferred();
var info;
var stderr;
var ffprobe = spawn(opts.path, opts.params);
The example of parametering for gain frames time informations:
I have suggest to you change this code in index.js
to this, for ability to send parameters for ffprobe:
The example of parametering for gain frames time informations:
The text was updated successfully, but these errors were encountered: