我如何从视频流中获取 1 帧并将其保存为 samp.jpeg(在同一文件 1 帧上保持覆盖),以便我可以在我的 python 画布或从该 jpeg 以及浏览器中渲染的 gui 中使用它。
以下测试不起作用。
#!/bin/bash
ps aux | grep vlc | awk '{print $2}' | xargs kill -9;
vlc -I dummy --no-audio --video-filter=scene --start-time=1 --stop-time=1 --scene-format=jpeg --scene-ratio=24 --scene-prefix=EXEC samp.jpeg vlc://quit
不工作
作品:
There is an entry for this at wiki.videolan.org/How_to_create_thumbnails : vlc C:\video\to\process.mp4 --rate=1 --video-filter=scene --vout=dummy --start-time=10 --stop-time=11 --scene-format=png --scene-ratio=24 --scene-prefix=snap --scene-path=C:\path\for\snapshots\ vlc://quit