File tree 9 files changed +12
-12
lines changed
vue-vite-app/src/components
website/docs/getting-started
9 files changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { RouterOutlet } from '@angular/router';
4
4
import { FFmpeg } from '@ffmpeg/ffmpeg' ;
5
5
import { fetchFile , toBlobURL } from '@ffmpeg/util' ;
6
6
7
- const baseURL = 'https://unpkg.com/@ffmpeg/core-mt@0.12.9 /dist/esm' ;
7
+ const baseURL = 'https://unpkg.com/@ffmpeg/core-mt@0.12.10 /dist/esm' ;
8
8
9
9
@Component ( {
10
10
selector : 'app-root' ,
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export default function Home() {
13
13
14
14
const load = async ( ) => {
15
15
setIsLoading ( true ) ;
16
- const baseURL = "https://unpkg.com/@ffmpeg/core@0.12.9 /dist/umd" ;
16
+ const baseURL = "https://unpkg.com/@ffmpeg/core@0.12.10 /dist/umd" ;
17
17
const ffmpeg = ffmpegRef . current ;
18
18
ffmpeg . on ( "log" , ( { message } ) => {
19
19
if ( messageRef . current ) messageRef . current . innerHTML = message ;
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ function App() {
9
9
const messageRef = useRef < HTMLParagraphElement | null > ( null ) ;
10
10
11
11
const load = async ( ) => {
12
- const baseURL = "https://unpkg.com/@ffmpeg/core-mt@0.12.9 /dist/esm" ;
12
+ const baseURL = "https://unpkg.com/@ffmpeg/core-mt@0.12.10 /dist/esm" ;
13
13
const ffmpeg = ffmpegRef . current ;
14
14
ffmpeg . on ( "log" , ( { message } ) => {
15
15
if ( messageRef . current ) messageRef . current . innerHTML = message ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import type { LogEvent } from '@ffmpeg/ffmpeg/dist/esm/types'
11
11
import { fetchFile , toBlobURL } from ' @ffmpeg/util'
12
12
import { defineComponent , ref } from ' vue'
13
13
14
- const baseURL = ' https://unpkg.com/@ffmpeg/core-mt@0.12.9 /dist/esm'
14
+ const baseURL = ' https://unpkg.com/@ffmpeg/core-mt@0.12.10 /dist/esm'
15
15
const videoURL = ' https://raw.githubusercontent.com/ffmpegwasm/testdata/master/video-15s.avi'
16
16
17
17
export default defineComponent ({
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ It is recommended to read [Overview](/docs/overview) first.
11
11
::: caution
12
12
If you are a [ vite] ( https://vitejs.dev/ ) user, use ` esm ` in ** baseURL** instead of ` umd ` :
13
13
14
- ~~ https://unpkg.com/@ffmpeg/core@0.12.9 /dist/umd ~~ => https://unpkg.com/@ffmpeg/core@0.12.9 /dist/esm
14
+ ~~ https://unpkg.com/@ffmpeg/core@0.12.10 /dist/umd ~~ => https://unpkg.com/@ffmpeg/core@0.12.10 /dist/esm
15
15
:::
16
16
17
17
``` jsx live
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @ffmpeg/core-mt" ,
3
- "version" : " 0.12.9 " ,
3
+ "version" : " 0.12.10 " ,
4
4
"description" : " FFmpeg WebAssembly version (multi thread)" ,
5
5
"main" : " ./dist/umd/ffmpeg-core.js" ,
6
6
"exports" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @ffmpeg/core" ,
3
- "version" : " 0.12.9 " ,
3
+ "version" : " 0.12.10 " ,
4
4
"description" : " FFmpeg WebAssembly version (single thread)" ,
5
5
"main" : " ./dist/umd/ffmpeg-core.js" ,
6
6
"exports" : {
Original file line number Diff line number Diff line change 1
1
export const MIME_TYPE_JAVASCRIPT = "text/javascript" ;
2
2
export const MIME_TYPE_WASM = "application/wasm" ;
3
3
4
- export const CORE_VERSION = "0.12.9 " ;
4
+ export const CORE_VERSION = "0.12.10 " ;
5
5
export const CORE_URL = `https://unpkg.com/@ffmpeg/core@${ CORE_VERSION } /dist/umd/ffmpeg-core.js` ;
6
6
7
7
export enum FFMessageType {
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ const fs = require("fs");
4
4
const NPM_URL = "https://registry.npmjs.org" ;
5
5
const ROOT = "public/assets" ;
6
6
7
- const FFMPEG_VERSION = "0.12.14 " ;
8
- const UTIL_VERSION = "0.12.1 " ;
9
- const CORE_VERSION = "0.12.9 " ;
10
- const CORE_MT_VERSION = "0.12.9 " ;
7
+ const FFMPEG_VERSION = "0.12.15 " ;
8
+ const UTIL_VERSION = "0.12.2 " ;
9
+ const CORE_VERSION = "0.12.10 " ;
10
+ const CORE_MT_VERSION = "0.12.10 " ;
11
11
12
12
const FFMPEG_TGZ = `ffmpeg-${ FFMPEG_VERSION } .tgz` ;
13
13
const UTIL_TGZ = `util-${ UTIL_VERSION } .tgz` ;
You can’t perform that action at this time.
0 commit comments