Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "js-ffmpeg", | ||
"description": "JS FFMpeg", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"author": "Ziggeo", | ||
@@ -6,0 +6,0 @@ "repository": "https://github.com/jsonize/jsffmpeg", |
@@ -38,2 +38,3 @@ Scoped.require([ | ||
normalize_audio: false, | ||
remove_audio: false, | ||
width: null, | ||
@@ -85,5 +86,8 @@ height: null, | ||
*/ | ||
if (options.output_type === 'video') | ||
if (options.synchronize) | ||
if (options.output_type === 'video') { | ||
if (options.remove_audio) | ||
args.push("-an"); | ||
else if (options.synchronize) | ||
args.push(helpers.paramsSynchronize); | ||
} | ||
@@ -90,0 +94,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
308575
1219