feat: add readDefaultVideoMetadata and clipboard permission

This commit is contained in:
Huakun Shen 2025-02-25 05:02:11 -05:00
parent 01b0030f02
commit aa6bf60e9c
No known key found for this signature in database
3 changed files with 5 additions and 5 deletions

View File

@ -2,8 +2,6 @@
import ffmpeg from 'fluent-ffmpeg';
import type { API } from '../src/types.ts';
import type { ProcessVideoOptions, Progress } from '@hk/photographer-toolbox/types';
// ffmpeg.setFfprobePath('/opt/homebrew/bin/ffprobe');
import { video } from '@hk/photographer-toolbox';
import { expose } from '@kunkun/api/runtime/deno';
@ -60,5 +58,6 @@ expose({
endCallback
);
return Promise.resolve();
}
},
readDefaultVideoMetadata: video.readMainVideoMetadata
} satisfies API);

View File

@ -2,7 +2,7 @@
"$schema": "https://schema.kunkun.sh",
"license": "MIT",
"name": "kunkun-ext-video-processing",
"version": "0.1.1",
"version": "0.1.2",
"repository": "https://github.com/kunkunsh/kunkun-ext-video-processing",
"author": {
"name": "Huakun",
@ -23,6 +23,7 @@
"https://i.imgur.com/YHP96YM.png"
],
"permissions": [
"clipboard:read-files",
"dialog:all",
{
"permission": "fs:exists",

View File

@ -7,7 +7,7 @@ import type {
export type API = {
// setFfprobePath: (path: string) => void;
// setFfmpegPath: (path: string) => void;
// readDefaultVideoMetadata: (path: string) => Promise<DefaultVideoMetadata | null>;
readDefaultVideoMetadata: (path: string) => Promise<DefaultVideoMetadata | null>;
getAvailableCodecsNamesByType: (
type: 'video' | 'audio' | 'subtitle' | string,
source?: string