Interface: FFMessageLoadConfig
ffmpeg-core loading configuration.
Properties
classWorkerURL
• Optional classWorkerURL: string
ffmpeg.worker.js URL. This worker is spawned when FFmpeg.load() is called, it is an essential worker and usually you don't need to update this config.
@ref: https://ffmpegwasm.netlify.app/docs/overview#architecture
Default Value
./worker.js
Defined in
packages/ffmpeg/src/types.ts:32
coreURL
• Optional coreURL: string
ffmpeg-core.js URL.
Default Value
https://cdn.jsdelivr.net/npm/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.js;
Defined in
packages/ffmpeg/src/types.ts:12
wasmURL
• Optional wasmURL: string
ffmpeg-core.wasm URL.
Default Value
https://cdn.jsdelivr.net/npm/@ffmpeg/core@${CORE_VERSION}/dist/umd/ffmpeg-core.wasm;
Defined in
packages/ffmpeg/src/types.ts:18
workerURL
• Optional workerURL: string
ffmpeg-core.worker.js URL. This worker is spawned when using multithread version of ffmpeg-core.
@ref: https://ffmpegwasm.netlify.app/docs/overview#architecture
Default Value
https://cdn.jsdelivr.net/npm/@ffmpeg/core-mt@${CORE_VERSION}/dist/umd/ffmpeg-core.worker.js;