
Thanks! I am the module manufacturer,I hope you can contact me hzzfly@gmail.com6by9 wrote: ↑Tue Apr 23, 2019 12:01 pmAs you're using the same handle here as YouTube, I assume you are the person manufacturing.
Please be very aware that using raspivid etc with this chip is very limited (720P only) and is NOT SUPPORTED. raspivid will even print that every time you run it with this chip attached.
Having said that, the links that RaTTus has linked to details how to use the Linux kernel drivers (which are supported), and those allow you to capture up to 1080P50 from the chip. I'm glad to see that you have brought out the I2S audio pins as well, as those can be linked up to capture synchronised audio too. It's all relatively easy using a recent build of GStreamer (Raspbian Stretch is a touch too old though).
At that price I expect people will be biting your hand off - I'm tempted to order a couple of spares! The alternative board is the Auvidea B101 https://auvidea.eu/product/70501/. That comes in at ~£65 via mouser.com
(~£78 for the B102 which should allow 1080P60, but the H264 encoder will struggle at that. Even 1080P50 requires an overclock).
Beijing,China.The module can be booked by mail and paid by paypal. Contact hzzfly@gmail.com
Why the video mentions 1080p/25fps? Is more fps possible? This is because of some limit on Pi side?BliMatrix wrote: ↑Tue Apr 23, 2019 10:45 amThis is a cheap way to get HDMI input to Raspberry Pi.The main chip of the module is Toshiba TC358743XBG. It's usage is exactly the same as the ordinary Raspberry Pi camera.https://www.youtube.com/watch?v=lYQuocM7VPI

The video is using the unsupported firmware drivers for this chip via raspivid.fanoush wrote: ↑Wed Apr 24, 2019 10:58 amWhy the video mentions 1080p/25fps? Is more fps possible? This is because of some limit on Pi side?BliMatrix wrote: ↑Tue Apr 23, 2019 10:45 amThis is a cheap way to get HDMI input to Raspberry Pi.The main chip of the module is Toshiba TC358743XBG. It's usage is exactly the same as the ordinary Raspberry Pi camera.https://www.youtube.com/watch?v=lYQuocM7VPI
Toshiba page mentions 1920x1080, 60 fps, 24 bpp
As for Pi side can this work as passthru to hdmi out (possibly including audio) with some overlays drawn over it?
The limit is indeed in Pi.fanoush wrote: ↑Wed Apr 24, 2019 10:58 amWhy the video mentions 1080p/25fps? Is more fps possible? This is because of some limit on Pi side?BliMatrix wrote: ↑Tue Apr 23, 2019 10:45 amThis is a cheap way to get HDMI input to Raspberry Pi.The main chip of the module is Toshiba TC358743XBG. It's usage is exactly the same as the ordinary Raspberry Pi camera.https://www.youtube.com/watch?v=lYQuocM7VPI
Toshiba page mentions 1920x1080, 60 fps, 24 bpp
As for Pi side can this work as passthru to hdmi out (possibly including audio) with some overlays drawn over it?
Code: Select all
from picamera import PiCamera
from time import sleep
camera = PiCamera()
camera.start_preview()
sleep(1000)
camera.stop_preview()
I will stress again, the use of the firmware is unsupported, and may be removed at a future point in time. It was code written for a demo, and is quite likely to include bugs. The use of the kernel drivers is very strongly recommended.BliMatrix wrote: ↑Wed Apr 24, 2019 2:14 pmThe limit is indeed in Pi.fanoush wrote: ↑Wed Apr 24, 2019 10:58 amWhy the video mentions 1080p/25fps? Is more fps possible? This is because of some limit on Pi side?BliMatrix wrote: ↑Tue Apr 23, 2019 10:45 amThis is a cheap way to get HDMI input to Raspberry Pi.The main chip of the module is Toshiba TC358743XBG. It's usage is exactly the same as the ordinary Raspberry Pi camera.https://www.youtube.com/watch?v=lYQuocM7VPI
Toshiba page mentions 1920x1080, 60 fps, 24 bpp
As for Pi side can this work as passthru to hdmi out (possibly including audio) with some overlays drawn over it?
This is the python code used in my video.The Pi uses an official image with no other changes.The HDMI source supported by Raspberry Pi with the module is 720p50,720p60,1080i50,1080p24,1080p25. Lower resolution is also workingCode: Select all
from picamera import PiCamera from time import sleep camera = PiCamera() camera.start_preview() sleep(1000) camera.stop_preview()

You ask about the Auvidea board on a post that is about an alternative? Ho hum.


Anyone?6by9 wrote: ↑Wed May 22, 2019 11:57 amI'm just wondering if anyone has actually bitten and received one (or more) of these.
I have emailed them and had a price back for shipping, but been busy with other things so held off actually ordering. Throwing random money via Paypal always seems a little iffy.
This is my first time posting in this forum, just want ask if anyone has successfully purchase and use this board. thanksBliMatrix wrote: ↑Tue Apr 23, 2019 10:45 amThis is a cheap way to get HDMI input to Raspberry Pi.The main chip of the module is Toshiba TC358743XBG. It's usage is exactly the same as the ordinary Raspberry Pi camera.https://www.youtube.com/watch?v=lYQuocM7VPI
Hi,onos9 wrote: ↑Thu Aug 15, 2019 2:26 amThis is my first time posting in this forum, just want ask if anyone has successfully purchase and use this board. thanksBliMatrix wrote: ↑Tue Apr 23, 2019 10:45 amThis is a cheap way to get HDMI input to Raspberry Pi.The main chip of the module is Toshiba TC358743XBG. It's usage is exactly the same as the ordinary Raspberry Pi camera.https://www.youtube.com/watch?v=lYQuocM7VPI
did you ever get this working on your RPI4 and CamLink? Would be curious to know how you did it.no sleep wrote: ↑Sun Aug 11, 2019 7:50 amI got mine in June, delivery to Germany took 2 weeks after placing the order. It's working as described but I couldn't get any audio out of it. My support request via email from June 28th is still unanswered. Not sure what is happening there.
Therefore I switched to the Elgato CamLink 4K on the RPI4 to capture and stream in 720p60.
Yeah it worked with (almost) no issues with a stock raspbian buster, my ffmpeg command line for streaming to twitch is as follows:
Code: Select all
ffmpeg -f v4l2 -framerate 60 -input_format yuyv422 -i /dev/video0 -f alsa -itsoffset 0.2 -i hw:1,0 -acodec aac -ab 128k \
-vcodec h264_omx -profile:v high -vsync 0 -b:v 4500k -minrate 4500k -maxrate 4500k -bufsize 9000k -f flv "rtmp://live-fra.twitch.tv/app/$STREAM_KEY"trying to use this boards (not the auvidea b101, but the "chinese" ones) with no success:htcohio wrote: ↑Thu Sep 05, 2019 7:05 amHi,onos9 wrote: ↑Thu Aug 15, 2019 2:26 amThis is my first time posting in this forum, just want ask if anyone has successfully purchase and use this board. thanksBliMatrix wrote: ↑Tue Apr 23, 2019 10:45 amThis is a cheap way to get HDMI input to Raspberry Pi.The main chip of the module is Toshiba TC358743XBG. It's usage is exactly the same as the ordinary Raspberry Pi camera.https://www.youtube.com/watch?v=lYQuocM7VPI
Yes it definitely works. We use it for OpenHD / Wifibroadcast.
Just be advised that different action camera output settings seem to vary with what works as the video input.
Here is a video I posted.
https://youtu.be/SM8dHXmP0Nw
seems there where some changes in kernel and drivers from your test htcohio ...The driver for the TC358743 HDMI to CSI2 chip you are using is NOT supported.
They were written for a demo purposes only, and are in the firmware on an as-is
basis and therefore requests for support or changes will not be acted on.

It's been stated that the use of raspivid and tc358743 is on an as-is basis since November 2017allegfede wrote: ↑Tue Feb 04, 2020 1:06 pmtrying to use this boards (not the auvidea b101, but the "chinese" ones) with no success:
seems there where some changes in kernel and drivers from your test htcohio ...The driver for the TC358743 HDMI to CSI2 chip you are using is NOT supported.
They were written for a demo purposes only, and are in the firmware on an as-is
basis and therefore requests for support or changes will not be acted on.
do you have your original image to test against? could you please upload it on mega.nz or other site?
thanks