Release 0.12.8 | 0.12.5

This commit is contained in:
jeromewu
2023-12-17 13:12:50 +08:00
parent ce375d99a8
commit ea373ad687
11 changed files with 26 additions and 26 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@ffmpeg/core-mt",
"version": "0.12.4",
"version": "0.12.5",
"description": "FFmpeg WebAssembly version (multi thread)",
"main": "./dist/umd/ffmpeg-core.js",
"exports": {
@@ -39,4 +39,4 @@
"publishConfig": {
"access": "public"
}
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@ffmpeg/core",
"version": "0.12.4",
"version": "0.12.5",
"description": "FFmpeg WebAssembly version (single thread)",
"main": "./dist/umd/ffmpeg-core.js",
"exports": {
@@ -39,4 +39,4 @@
"publishConfig": {
"access": "public"
}
}
}

View File

@@ -1,6 +1,6 @@
{
"name": "@ffmpeg/ffmpeg",
"version": "0.12.7",
"version": "0.12.8",
"description": "FFmpeg WebAssembly version for browser",
"main": "./dist/umd/ffmpeg.js",
"types": "./dist/esm/index.d.ts",

View File

@@ -1,7 +1,7 @@
export const MIME_TYPE_JAVASCRIPT = "text/javascript";
export const MIME_TYPE_WASM = "application/wasm";
export const CORE_VERSION = "0.12.1";
export const CORE_VERSION = "0.12.5";
export const CORE_URL = `https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.js`;
export enum FFMessageType {
@@ -21,4 +21,4 @@ export enum FFMessageType {
LOG = "LOG",
MOUNT = "MOUNT",
UNMOUNT = "UNMOUNT",
}
}