Skip to content

Commit ea373ad

Browse files
committed
Release 0.12.8 | 0.12.5
1 parent ce375d9 commit ea373ad

File tree

11 files changed

+26
-26
lines changed

11 files changed

+26
-26
lines changed

apps/nextjs-app/app/Home.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Home() {
1313

1414
const load = async () => {
1515
setIsLoading(true)
16-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
16+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
1717
const ffmpeg = ffmpegRef.current
1818
ffmpeg.on('log', ({ message }) => {
1919
if (messageRef.current) messageRef.current.innerHTML = message

apps/react-vite-app/src/App.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ function App() {
99
const messageRef = useRef<HTMLParagraphElement | null>(null)
1010

1111
const load = async () => {
12-
const baseURL = "https://unpkg.com/@ffmpeg/[email protected].4/dist/esm";
12+
const baseURL = "https://unpkg.com/@ffmpeg/[email protected].5/dist/esm";
1313
const ffmpeg = ffmpegRef.current;
1414
ffmpeg.on("log", ({ message }) => {
1515
if (messageRef.current) messageRef.current.innerHTML = message;

apps/vue-vite-app/src/components/FFmpegDemo.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import type { LogEvent } from '@ffmpeg/ffmpeg/dist/esm/types'
1111
import { fetchFile, toBlobURL } from '@ffmpeg/util'
1212
import { defineComponent, ref } from 'vue'
1313
14-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/esm'
14+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/esm'
1515
const videoURL = 'https://ffmpegwasm.netlify.app/video/video-15s.avi'
1616
1717
export default defineComponent({

apps/website/docs/getting-started/usage.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ It is recommended to read [Overview](/docs/overview) first.
1111
:::caution
1212
If you are a [vite](https://vitejs.dev/) user, use `esm` in **baseURL** instead of `umd`:
1313

14-
~~https://unpkg.com/@ffmpeg/[email protected].4/dist/umd~~ => https://unpkg.com/@ffmpeg/[email protected].4/dist/esm
14+
~~https://unpkg.com/@ffmpeg/[email protected].5/dist/umd~~ => https://unpkg.com/@ffmpeg/[email protected].5/dist/esm
1515
:::
1616

1717
```jsx live
@@ -24,7 +24,7 @@ function() {
2424
const messageRef = useRef(null);
2525

2626
const load = async () => {
27-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
27+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
2828
const ffmpeg = ffmpegRef.current;
2929
ffmpeg.on('log', ({ message }) => {
3030
messageRef.current.innerHTML = message;
@@ -81,7 +81,7 @@ function() {
8181
const messageRef = useRef(null);
8282

8383
const load = async () => {
84-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
84+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
8585
const ffmpeg = ffmpegRef.current;
8686
ffmpeg.on('log', ({ message }) => {
8787
messageRef.current.innerHTML = message;
@@ -134,7 +134,7 @@ function() {
134134
const messageRef = useRef(null);
135135

136136
const load = async () => {
137-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
137+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
138138
const ffmpeg = ffmpegRef.current;
139139
ffmpeg.on('log', ({ message }) => {
140140
messageRef.current.innerHTML = message;
@@ -192,7 +192,7 @@ function() {
192192
const messageRef = useRef(null);
193193

194194
const load = async () => {
195-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
195+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
196196
const ffmpeg = ffmpegRef.current;
197197
// Listen to progress event instead of log.
198198
ffmpeg.on('progress', ({ progress, time }) => {
@@ -243,7 +243,7 @@ function() {
243243
const messageRef = useRef(null);
244244

245245
const load = async () => {
246-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
246+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
247247
const ffmpeg = ffmpegRef.current;
248248
ffmpeg.on('log', ({ message }) => {
249249
messageRef.current.innerHTML = message;
@@ -313,7 +313,7 @@ function() {
313313
const messageRef = useRef(null);
314314

315315
const load = async () => {
316-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
316+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
317317
const ffmpeg = ffmpegRef.current;
318318
ffmpeg.on('log', ({ message }) => {
319319
messageRef.current.innerHTML = message;
@@ -372,7 +372,7 @@ function() {
372372
const messageRef = useRef(null);
373373

374374
const load = async () => {
375-
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].4/dist/umd'
375+
const baseURL = 'https://unpkg.com/@ffmpeg/[email protected].5/dist/umd'
376376
const ffmpeg = ffmpegRef.current;
377377
ffmpeg.on('log', ({ message }) => {
378378
messageRef.current.innerHTML = message;

apps/website/src/components/Playground/const.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
export const CORE_VERSION = "0.12.4";
1+
export const CORE_VERSION = "0.12.5";
22

33
export const CORE_URL = `https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.js`;
44
export const CORE_MT_URL = `https://unpkg.com/@ffmpeg/core-mt@${CORE_VERSION}/dist/umd/ffmpeg-core.js`;
55

66
export const CORE_SIZE = {
77
[`https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.js`]: 114673,
8-
[`https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.wasm`]: 31739621,
8+
[`https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.wasm`]: 31742481,
99
[`https://unpkg.com/@ffmpeg/core-mt@${CORE_VERSION}/dist/umd/ffmpeg-core.js`]: 132680,
10-
[`https://unpkg.com/@ffmpeg/core-mt@${CORE_VERSION}/dist/umd/ffmpeg-core.wasm`]: 32220432,
10+
[`https://unpkg.com/@ffmpeg/core-mt@${CORE_VERSION}/dist/umd/ffmpeg-core.wasm`]: 32223257,
1111
[`https://unpkg.com/@ffmpeg/core-mt@${CORE_VERSION}/dist/umd/ffmpeg-core.worker.js`]: 2915,
1212
};
1313

package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core-mt/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ffmpeg/core-mt",
3-
"version": "0.12.4",
3+
"version": "0.12.5",
44
"description": "FFmpeg WebAssembly version (multi thread)",
55
"main": "./dist/umd/ffmpeg-core.js",
66
"exports": {
@@ -39,4 +39,4 @@
3939
"publishConfig": {
4040
"access": "public"
4141
}
42-
}
42+
}

packages/core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ffmpeg/core",
3-
"version": "0.12.4",
3+
"version": "0.12.5",
44
"description": "FFmpeg WebAssembly version (single thread)",
55
"main": "./dist/umd/ffmpeg-core.js",
66
"exports": {
@@ -39,4 +39,4 @@
3939
"publishConfig": {
4040
"access": "public"
4141
}
42-
}
42+
}

packages/ffmpeg/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ffmpeg/ffmpeg",
3-
"version": "0.12.7",
3+
"version": "0.12.8",
44
"description": "FFmpeg WebAssembly version for browser",
55
"main": "./dist/umd/ffmpeg.js",
66
"types": "./dist/esm/index.d.ts",

packages/ffmpeg/src/const.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const MIME_TYPE_JAVASCRIPT = "text/javascript";
22
export const MIME_TYPE_WASM = "application/wasm";
33

4-
export const CORE_VERSION = "0.12.1";
4+
export const CORE_VERSION = "0.12.5";
55
export const CORE_URL = `https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.js`;
66

77
export enum FFMessageType {
@@ -21,4 +21,4 @@ export enum FFMessageType {
2121
LOG = "LOG",
2222
MOUNT = "MOUNT",
2323
UNMOUNT = "UNMOUNT",
24-
}
24+
}

scripts/download-assets.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ const ROOT = "public/assets";
66

77
const FFMPEG_VERSION = "0.12.7";
88
const UTIL_VERSION = "0.12.0";
9-
const CORE_VERSION = "0.12.4";
10-
const CORE_MT_VERSION = "0.12.4";
9+
const CORE_VERSION = "0.12.5";
10+
const CORE_MT_VERSION = "0.12.5";
1111

1212
const FFMPEG_TGZ = `ffmpeg-${FFMPEG_VERSION}.tgz`;
1313
const UTIL_TGZ = `util-${UTIL_VERSION}.tgz`;

0 commit comments

Comments
 (0)