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

View File

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

View File

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