mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 07:31:22 +01:00
Support for HW accelerated Image Grabbing #199
Labels
No labels
bug
enhancement
help wanted
invalid
pull-request
question
upstream
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: starred/ffmpeg-rockchip#199
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @defencedog on GitHub (Aug 12, 2025).
I am extracting images from my webcam v380 & processing them in RKNPU. Is there a code which can make this process use GPU? I am on RK3566 & am successfully using
h264_rkmppfor video recording.My script is
v380 -u xxxx -p xxxx -addr 192.168.1.xxx | ffmpeg -i - -f image2 -vf fps=3 -strftime 1 "$TEMP_DIR/%Y-%m-%d_%H-%M-%S_cap.jpg" -yIt gives me screenshot after every ~1 sec ... I did have to play with choices
fps=1,3,5@nyanmisaka commented on GitHub (Aug 13, 2025):
Isn't there an
mjpeg_rkmpphardware encoder?@defencedog commented on GitHub (Aug 14, 2025):
Should I use
ffmpeg -i - -f image2 -c:v mjpeg_rkmpp -vf fps=3 -strftime 1 "$TEMP_DIR/%Y-%m-%d_%H-%M-%S_cap.jpg"or should omit-f image2... I see no difference@nyanmisaka commented on GitHub (Aug 14, 2025):
-f image2is not important. As long as-c:v mjpeg_rkmppdoes not fail, hardware encoding is already enabled.