New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ffmpeg/types

Package Overview
Dependencies
Maintainers
0
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ffmpeg/types - npm Package Compare versions

Comparing version 0.12.2 to 0.12.3

4

package.json
{
"name": "@ffmpeg/types",
"version": "0.12.2",
"version": "0.12.3",
"description": "ffmpeg.wasm types",

@@ -32,2 +32,2 @@ "types": "types",

}
}
}

@@ -42,9 +42,5 @@ // TODO: Add lint and test.

export interface FSFilesystemWORKERFS {
}
export interface FSFilesystemWORKERFS {}
export interface FSFilesystemMEMFS {
}
export interface FSFilesystemMEMFS {}

@@ -56,6 +52,16 @@ export interface FSFilesystems {

export type FSFilesystem =
| FSFilesystemWORKERFS
| FSFilesystemMEMFS;
export type FSFilesystem = FSFilesystemWORKERFS | FSFilesystemMEMFS;
export interface OptionReadFile {
encoding: string;
}
export interface WorkerFSMountConfig {
blobs?: {
name: string;
data: Blob;
}[];
files?: File[];
}
/**

@@ -80,3 +86,7 @@ * Functions to interact with Emscripten FS library.

isDir: (mode: number) => boolean;
mount: (fileSystemType: FSFilesystem, data: WorkerFSMountConfig, path: string) => void;
mount: (
fileSystemType: FSFilesystem,
data: WorkerFSMountConfig,
path: string
) => void;
unmount: (path: string) => void;

@@ -121,2 +131,3 @@ filesystems: FSFilesystems;

exec: (...args: string[]) => number;
ffprobe: (...args: string[]) => number;
reset: () => void;

@@ -123,0 +134,0 @@ setLogger: (logger: (log: Log) => void) => void;

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc