Skip to content

Commit c3a7638

Browse files
committed
Release v0.12.10 | v0.12.6
1 parent e0d4c62 commit c3a7638

File tree

10 files changed

+19
-19
lines changed

10 files changed

+19
-19
lines changed

apps/angular-app/src/app/app.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { RouterOutlet } from '@angular/router';
44
import { FFmpeg } from '@ffmpeg/ffmpeg';
55
import { fetchFile, toBlobURL } from '@ffmpeg/util';
66

7-
const baseURL = "https://unpkg.com/@ffmpeg/core-mt@0.12.5/dist/esm";
7+
const baseURL = "https://unpkg.com/@ffmpeg/core-mt@0.12.6/dist/esm";
88

99
@Component({
1010
selector: 'app-root',

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/core@0.12.5/dist/umd'
16+
const baseURL = 'https://unpkg.com/@ffmpeg/core@0.12.6/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/core-mt@0.12.5/dist/esm";
12+
const baseURL = "https://unpkg.com/@ffmpeg/core-mt@0.12.6/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/core-mt@0.12.5/dist/esm'
14+
const baseURL = 'https://unpkg.com/@ffmpeg/core-mt@0.12.6/dist/esm'
1515
const videoURL = 'https://raw.githubusercontent.com/ffmpegwasm/testdata/master/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/core@0.12.5/dist/umd~~ => https://unpkg.com/@ffmpeg/core@0.12.5/dist/esm
14+
~~https://unpkg.com/@ffmpeg/core@0.12.6/dist/umd~~ => https://unpkg.com/@ffmpeg/core@0.12.6/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/core@0.12.5/dist/umd'
27+
const baseURL = 'https://unpkg.com/@ffmpeg/core@0.12.6/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/core-mt@0.12.5/dist/umd'
84+
const baseURL = 'https://unpkg.com/@ffmpeg/core-mt@0.12.6/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/core@0.12.5/dist/umd'
137+
const baseURL = 'https://unpkg.com/@ffmpeg/core@0.12.6/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/core@0.12.5/dist/umd'
195+
const baseURL = 'https://unpkg.com/@ffmpeg/core@0.12.6/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/core@0.12.5/dist/umd'
246+
const baseURL = 'https://unpkg.com/@ffmpeg/core@0.12.6/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/core@0.12.5/dist/umd'
316+
const baseURL = 'https://unpkg.com/@ffmpeg/core@0.12.6/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/core@0.12.5/dist/umd'
375+
const baseURL = 'https://unpkg.com/@ffmpeg/core@0.12.6/dist/umd'
376376
const ffmpeg = ffmpegRef.current;
377377
ffmpeg.on('log', ({ message }) => {
378378
messageRef.current.innerHTML = message;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ffmpeg/core-mt",
3-
"version": "0.12.5",
3+
"version": "0.12.6",
44
"description": "FFmpeg WebAssembly version (multi thread)",
55
"main": "./dist/umd/ffmpeg-core.js",
66
"exports": {

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ffmpeg/core",
3-
"version": "0.12.5",
3+
"version": "0.12.6",
44
"description": "FFmpeg WebAssembly version (single thread)",
55
"main": "./dist/umd/ffmpeg-core.js",
66
"exports": {

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.9",
3+
"version": "0.12.10",
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

+1-1
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.5";
4+
export const CORE_VERSION = "0.12.6";
55
export const CORE_URL = `https://unpkg.com/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.js`;
66

77
export enum FFMessageType {

0 commit comments

Comments
 (0)