Я пытаюсь снимать видео кадр за кадром, используя fluent-ffmpeg, для создания маскировки видео и некоторого рода подобного экспериментального редактора видео.Но когда я делаю это с помощью screenshots
, он говорит ffmpeg exited with code 1: Output with label 'screen0' does not exist in any defined filter graph, or was already used elsewhere.
Вот пример массива, который я использую для создания меток времени.["0.019528","0.05226","0.102188","0.13635","0.152138","0.186013","0.236149" ...]
// read json file that contains timestaps, array
fs.readFile(`${config.videoProc}/timestamp/1.json`, 'utf8', async (err, data) => {
if (err) throw new Error(err.message);
const timestamp = JSON.parse(data);
// screenshot happens here
// loop till there is nothing on array...
function takeFrame() {
command.input(`${config.publicPath}/static/video/1.mp4`)
.on('error', error => console.log(error.message))
.on('end', () => {
if (timestamp.length > 0) {
// screenshot again ...
takeFrame();
} else {
console.log('Process ended');
}
})
.noAudio()
.screenshots({
timestamps: timestamp.splice(0, 100),
filename: '%i.png',
folder: '../video/img',
size: '320x240',
});
}
// call the function
takeFrame();
});
Мой ожидаемый результат - я могу получить все 600 снимков экрана.на одном видео.но фактическим результатом является эта ошибка ffmpeg exited with code 1: Output with label 'screen0' does not exist in any defined filter graph, or was already used elsewhere
и генерируется только 100 экран.
[ОБНОВЛЕНИЕ]
с использованием -filter_complex
, как указано в здесь doenst work.
ffmpeg exited with code 1: Error initializing complex filters.
Invalid argument
[ОБНОВЛЕНИЕ]
командная строка arg:
ffmpeg -ss 0.019528 -i D:\Latihan\video-cms-core\public/static/video/1.mp4 -y -filter_complex scale=w=320:h=240[size0];[size0]split=1[screen0] -an -vframes 1 -map [screen0] ..\video\img\1.png