mirror of
https://github.com/kunkunsh/kunkun-ext-video-processing.git
synced 2025-04-03 18:06:43 +00:00
feat: add readDefaultVideoMetadata and clipboard permission
This commit is contained in:
parent
01b0030f02
commit
aa6bf60e9c
@ -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);
|
||||||
|
@ -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",
|
||||||
|
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user