File tree Expand file tree Collapse file tree 9 files changed +12
-12
lines changed
vue-vite-app/src/components
website/docs/getting-started Expand file tree Collapse file tree 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';
44import { FFmpeg } from '@ffmpeg/ffmpeg' ;
55import { fetchFile , toBlobURL } from '@ffmpeg/util' ;
66
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' ;
88
99@Component ( {
1010 selector : 'app-root' ,
Original file line number Diff line number Diff 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.9 /dist/umd" ;
16+ const baseURL = "https://unpkg.com/@ffmpeg/core@0.12.10 /dist/umd" ;
1717 const ffmpeg = ffmpegRef . current ;
1818 ffmpeg . on ( "log" , ( { message } ) => {
1919 if ( messageRef . current ) messageRef . current . innerHTML = message ;
Original file line number Diff line number Diff 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.9 /dist/esm" ;
12+ const baseURL = "https://unpkg.com/@ffmpeg/core-mt@0.12.10 /dist/esm" ;
1313 const ffmpeg = ffmpegRef . current ;
1414 ffmpeg . on ( "log" , ( { message } ) => {
1515 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'
1111import { fetchFile , toBlobURL } from ' @ffmpeg/util'
1212import { defineComponent , ref } from ' vue'
1313
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'
1515const videoURL = ' https://raw.githubusercontent.com/ffmpegwasm/testdata/master/video-15s.avi'
1616
1717export 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.
1111::: caution
1212If you are a [ vite] ( https://vitejs.dev/ ) user, use ` esm ` in ** baseURL** instead of ` umd ` :
1313
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
1515:::
1616
1717``` jsx live
Original file line number Diff line number Diff line change 11{
22 "name" : " @ffmpeg/core-mt" ,
3- "version" : " 0.12.9 " ,
3+ "version" : " 0.12.10 " ,
44 "description" : " FFmpeg WebAssembly version (multi thread)" ,
55 "main" : " ./dist/umd/ffmpeg-core.js" ,
66 "exports" : {
Original file line number Diff line number Diff line change 11{
22 "name" : " @ffmpeg/core" ,
3- "version" : " 0.12.9 " ,
3+ "version" : " 0.12.10 " ,
44 "description" : " FFmpeg WebAssembly version (single thread)" ,
55 "main" : " ./dist/umd/ffmpeg-core.js" ,
66 "exports" : {
Original file line number Diff line number Diff line change 11export const MIME_TYPE_JAVASCRIPT = "text/javascript" ;
22export const MIME_TYPE_WASM = "application/wasm" ;
33
4- export const CORE_VERSION = "0.12.9 " ;
4+ export const CORE_VERSION = "0.12.10 " ;
55export const CORE_URL = `https://unpkg.com/@ffmpeg/core@${ CORE_VERSION } /dist/umd/ffmpeg-core.js` ;
66
77export enum FFMessageType {
Original file line number Diff line number Diff line change @@ -4,10 +4,10 @@ const fs = require("fs");
44const NPM_URL = "https://registry.npmjs.org" ;
55const ROOT = "public/assets" ;
66
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 " ;
1111
1212const FFMPEG_TGZ = `ffmpeg-${ FFMPEG_VERSION } .tgz` ;
1313const UTIL_TGZ = `util-${ UTIL_VERSION } .tgz` ;
You can’t perform that action at this time.
0 commit comments