Comparing version 0.0.9 to 0.0.10
{ | ||
"name": "js-ffmpeg", | ||
"description": "JS FFMpeg", | ||
"version": "0.0.9", | ||
"version": "0.0.10", | ||
"author": "Ziggeo", | ||
@@ -6,0 +6,0 @@ "repository": "https://github.com/jsonize/jsffmpeg", |
@@ -32,3 +32,3 @@ Scoped.require([ | ||
var rotation = stream.tags && stream.tags.rotate ? parseInt(stream.tags.rotate, 10) : 0; | ||
result.video = { | ||
var video = { | ||
index: stream.index, | ||
@@ -46,2 +46,6 @@ rotation: rotation, | ||
}; | ||
if (json.format.format_name === "image" || json.format.format_name === "image2") | ||
result.image = video; | ||
else | ||
result.video = video; | ||
} else if (stream.codec_type === 'audio') { | ||
@@ -48,0 +52,0 @@ result.audio = { |
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
308729
1223