Correct interface fields in FfprobeData

According to original library, the name of property should be streams, not stream.
https://github.com/fluent-ffmpeg/node-fluent-ffmpeg/blob/master/lib/ffprobe.js#L17
This commit is contained in:
Matej Kormuth
2017-09-15 15:41:17 +02:00
committed by GitHub
parent 2673835592
commit 1b4fe408d5
+1 -1
View File
@@ -90,7 +90,7 @@ declare namespace Ffmpeg {
type FormatsCallback = (err: Error, formats: Formats) => void;
interface FfprobeData {
stream: any[];
streams: any[];
format: any;
chapters: any[];
}