You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-re - Process input at real-time, otherwise it will go as fast as possible.
-loop 1 - Continuously loop the input.
-i input.jpg - The input file. Note that the option is -i, not -I which is invalid (Unrecognized option 'I').
-vf format=yuv420p - Use format filter to output a pixel format that is compatible with V4L2.
-f v4l2 - Manually set which output format to use. Usually this isn't needed for local, normal file outputs. But it is needed for streaming, and outputting to V4L2 can be considered a type of streaming.
/dev/video0 - The output.
FYI for others: If the output is fuzzy, say, because you changed the .jpg being rendered, delete the video0 device and re-create it: ./v4l2loopback-ctl delete /dev/video0; ./v4l2loopback-ctl add /dev/video0