FFmpegで動画のサムネイルを出力する
code:ts
import { spawn } from "child_process";
spawn(
"ffmpeg",
[
'-re',
'-i', 'pipe:0',
'-ss', '00:00:03', //いい感じの時間に適宣変更
'-s', '1200x630', //お好みで解像度を適宣変更
'-frames', '1',
'-f', 'mjpeg',
'pipe:1'
],
{
windowsHide: true,
stdio: [
"pipe",
"pipe" // pipe0: 動画ストリーム入力 pipe1: エンコード済みストリーム出力 ]
}
)