From aa6bf60e9c16015cc549bc2b7406b032fad8082d Mon Sep 17 00:00:00 2001 From: Huakun Shen Date: Tue, 25 Feb 2025 05:02:11 -0500 Subject: [PATCH] feat: add readDefaultVideoMetadata and clipboard permission --- deno-src/index.ts | 5 ++--- package.json | 3 ++- src/types.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deno-src/index.ts b/deno-src/index.ts index 014b60b..bec6857 100644 --- a/deno-src/index.ts +++ b/deno-src/index.ts @@ -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); diff --git a/package.json b/package.json index 3539131..c1fc45e 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/src/types.ts b/src/types.ts index 7eca272..b2261b3 100644 --- a/src/types.ts +++ b/src/types.ts @@ -7,7 +7,7 @@ import type { export type API = { // setFfprobePath: (path: string) => void; // setFfmpegPath: (path: string) => void; - // readDefaultVideoMetadata: (path: string) => Promise; + readDefaultVideoMetadata: (path: string) => Promise; getAvailableCodecsNamesByType: ( type: 'video' | 'audio' | 'subtitle' | string, source?: string