feat: png video截图

This commit is contained in:
手瓜一十雪 2025-11-12 13:38:08 +08:00
parent c9b45ec1a2
commit 7aedacb27f
7 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export class FFmpegAddonAdapter implements IFFmpegAdapter {
*/ */
async getVideoInfo (videoPath: string): Promise<VideoInfoResult> { async getVideoInfo (videoPath: string): Promise<VideoInfoResult> {
const addon = this.ensureAddon(); const addon = this.ensureAddon();
const info = await addon.getVideoInfo(videoPath, 'bmp24'); const info = await addon.getVideoInfo(videoPath);
let format = info.format.includes(',') ? info.format.split(',')[0] ?? info.format : info.format; let format = info.format.includes(',') ? info.format.split(',')[0] ?? info.format : info.format;
console.log('[FFmpegAddonAdapter] Detected format:', format); console.log('[FFmpegAddonAdapter] Detected format:', format);