mirror of
https://github.com/kunkunsh/kunkun-ext-video-processing.git
synced 2025-04-03 18:06:43 +00:00
upgrade api, removed test code
This commit is contained in:
parent
54d6e3519c
commit
8c208b1b2d
1
.gitignore
vendored
1
.gitignore
vendored
@ -22,3 +22,4 @@ vite.config.ts.timestamp-*
|
||||
extensions_support/
|
||||
|
||||
.pnpm-store
|
||||
dist/
|
||||
|
3043
dist/video-info.js
vendored
3043
dist/video-info.js
vendored
File diff suppressed because it is too large
Load Diff
@ -80,7 +80,7 @@
|
||||
"dependencies": {
|
||||
"@hk/photographer-toolbox": "npm:@jsr/hk__photographer-toolbox@^0.1.8",
|
||||
"@iconify/svelte": "^4.0.2",
|
||||
"@kksh/api": "^0.0.48",
|
||||
"@kksh/api": "^0.0.52",
|
||||
"@kksh/svelte5": "^0.1.9",
|
||||
"@tanstack/table-core": "^8.20.5",
|
||||
"clsx": "^2.1.1",
|
||||
|
776
pnpm-lock.yaml
generated
776
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,3 @@
|
||||
// @ts-nocheck
|
||||
|
||||
import { shell } from '@kksh/api/ui/iframe';
|
||||
import type { API } from '../types';
|
||||
|
||||
@ -42,48 +40,3 @@ export function getFFmpegPath() {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
(async () => {
|
||||
|
||||
|
||||
import { shell } from '@kksh/api/ui/iframe';
|
||||
|
||||
const { rpcChannel, process, command } = await shell.createDenoRpcChannel<object, API>(
|
||||
'$EXTENSION/ext.ts',
|
||||
{
|
||||
allowEnv: ['NODE_V8_COVERAGE', 'npm_package_config_libvips', 'EXIFTOOL_HOME', 'OSTYPE'],
|
||||
allowAllRead: true,
|
||||
allowAllSys: true,
|
||||
allowAllRun: true,
|
||||
env: {
|
||||
FFMPEG_PATH: '/opt/homebrew/bin/ffmpeg',
|
||||
FFPROBE_PATH: '/opt/homebrew/bin/ffprobe'
|
||||
}
|
||||
}
|
||||
);
|
||||
const api = rpcChannel.getAPI();
|
||||
api
|
||||
.convertVideo(
|
||||
inputPath,
|
||||
outputPath,
|
||||
verifiedOptions,
|
||||
() => {
|
||||
// on start
|
||||
toast.info('Started');
|
||||
},
|
||||
(progress) => {
|
||||
console.log('progress', progress);
|
||||
},
|
||||
() => {
|
||||
// on end
|
||||
process.kill();
|
||||
toast.success('Done');
|
||||
}
|
||||
)
|
||||
.catch((e) => {
|
||||
console.error(e);
|
||||
process.kill();
|
||||
});
|
||||
|
||||
|
||||
})();
|
||||
|
Loading…
x
Reference in New Issue
Block a user