upgrade api, removed test code

This commit is contained in:
Huakun Shen 2025-01-18 04:06:52 -05:00
parent 54d6e3519c
commit 8c208b1b2d
No known key found for this signature in database
5 changed files with 698 additions and 3173 deletions

1
.gitignore vendored
View File

@ -22,3 +22,4 @@ vite.config.ts.timestamp-*
extensions_support/
.pnpm-store
dist/

3043
dist/video-info.js vendored

File diff suppressed because it is too large Load Diff

View File

@ -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

File diff suppressed because it is too large Load Diff

View File

@ -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();
});
})();