我使用PhantomJS和ffmpeg从帧渲染视频。我尝试做滚动框架并渲染它,但没有成功。 我的代码是:
const page = require("webpage").create();
const getImage = (link, duration) => {
page.viewportSize = { width: windowWidth, height: windowHeight };
page.scrollPosition = {top: 0, left: 0};
let videoDuration = Math.floor(duration * 25);
if (link.startsWith("http://") || link.startsWith("https://")) {
page.open(link, () => {
let frame = 0;
setInterval(() => {
page.render("frames/image" + frame++ + ".png", { format: "png"
});
page.evaluate(function () { window.scrollBy = 100; });
if (frame > videoDuration) {
phantom.exit();
}
}, 25);
});
} else {
console.log("Enter a valid link");
phantom.exit();
}
};
getImage(imageLink, duration);
当我运行渲染的视频时,它只能像任何视频一样播放,没有任何滚动。 我怎么做错了? PS:我发现page.scroolPosition的解决方案很少-但它们也不起作用。
答案 0 :(得分:0)
尝试打开具有不同超时时间的页面后等待。
const page = require("webpage").create();
const getImage = (link, duration) => {
page.viewportSize = { width: windowWidth, height: windowHeight };
page.scrollPosition = { top: 0, left: 0 };
let videoDuration = Math.floor(duration * 25);
if (link.startsWith("http://") || link.startsWith("https://")) {
page.open(link, () => {
let frame = 0;
setTimeout(() => {
setInterval(() => {
page.render("frames/image" + frame++ + ".png", {
format: "png"
});
page.evaluate(function () { window.scrollBy(0, 100); });
if (frame > videoDuration) {
phantom.exit();
}
}, 25);
}, 1000);
});
} else {
console.log("Enter a valid link");
phantom.exit();
}
};
getImage(imageLink, duration);
也尝试使用其他滚动方法:window.scrollTo(...)
,document.body.scrollTop = ...
更新:
window.scrollBy(X, Y);
是函数,不是属性。
答案 1 :(得分:0)
据我分析,对于该网站“ jet.gml.aisnovations.com/”,我无法创建视频渲染,但是... 但我已经为https://ru.wikipedia.org
做到了代码如下:
const imageLink = "https://ru.wikipedia.org";
const duration = 10;
const page = require("webpage").create();
const saveImages = (link, duration) => {
const width = 1024;
const height = 768;
page.viewportSize = { width, height };
let videoDuration = Math.floor(duration * 25);
if (
link.startsWith("http://") ||
link.startsWith("https://")
) {
page.open(link, () => {
const scrollHeight = page.evaluate(() => {
return document.body.scrollHeight;
});
const scrollStep = (scrollHeight - height) / videoDuration;
for (let i = 0; i < videoDuration; i += 1) {
page.clipRect = {
width,
height,
left: 0,
top: scrollStep * i
};
page.render("frames/image" + (i + 1) + ".png", { format: "png" });
}
phantom.exit();
});
} else {
console.log("Enter a valid link");
phantom.exit();
}
};
saveImages(imageLink, duration);
脚本将图像保存在文件夹框架中,然后使用命令从中渲染视频剪辑
`ffmpeg -start_number 10 -i frames/image%02d.png -c:v libx264 -r 25 -pix_fmt yuv420p out.mp4`