Quantcast
Channel: Raspberry Pi Forums
Viewing all articles
Browse latest Browse all 4848

Graphics, sound and multimedia • C790 HDMI Board with RPi5

$
0
0
Hello,

Finally, I can read raw HDMI data using the C790 Board. https://geekworm.com/products/c790

I have created this basic script to enable the C790 Module.

Code:

#!/bin/shv4l2-ctl --list-devicesmedia-ctl -d /dev/media$1 -pv4l2-ctl -d /dev/v4l-subdev2 --query-dv-timingsv4l2-ctl -d /dev/v4l-subdev2 --set-dv-bt-timings querymedia-ctl -d /dev/media$1 -rmedia-ctl -d /dev/media$1 -l ''\''csi2'\'':4 -> '\''rp1-cfe-csi2_ch0'\'':0 [1]'media-ctl -d /dev/media$1 -V ''\''csi2'\'':0 [fmt:RGB888_1X24/1920x1080 field:none colorspace:srgb]'media-ctl -d /dev/media$1 -V ''\''csi2'\'':4 [fmt:RGB888_1X24/1920x1080 field:none colorspace:srgb]'media-ctl -d /dev/media$1 -V ''\''tc358743 4-000f'\'':0 [fmt:RGB888_1X24/1920x1080 field:none colorspace:srgb]'v4l2-ctl -v width=1920,height=1080,pixelformat=RGB3echo TESTING FRAMESv4l2-ctl --stream-mmap=3 --stream-count=100 --stream-to=/dev/null
The command line is:
sh sh enablevid.sh number of the media device
ie: sh enablevid.sh 0

after complete this command you should be able to run and display the live data from the HDMI

Code:

ffplay -f v4l2 -input_format rgb24 -video_size 1920x1080 -framerate 30 -i /dev/video0
Question:
How do I get in the script the correct media device?
How do I access the /dev/video0 using Python and CV2? It doest detect as a camera and I can't use cap = cv2.VideoCapture(0)

Problems:
how do I fix the colors?

Preview:
Image

Statistics: Posted by FearL0rd — Mon May 20, 2024 7:36 pm



Viewing all articles
Browse latest Browse all 4848

Trending Articles