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
Need a somewhat-live stream of what's happening in opentrons. Can be low framerate and with delay.
Here is what I have so far:
I tried HLS (a simple way to get streaming that works in some browsers off-the-bat and requires only http access).
But seems that OT2's ffmpeg does not provide HLS as all commands with HLS in it were reported as incorrect.
I tried using mpegts, another protocol
# This one starts streaming in tcp mode, because SSH forwards TCP, not UDP
ffmpeg -y \
-video_size 320x240 \
-i /dev/video0 \
-framerate 4 \
-f mpegts tcp://127.0.0.1:8000
# This command forwards port
ssh -R 8000:localhost:8000 <opentrons>
# This command converts TCP to UDP on laptop
socat TCP-LISTEN:8000 udp-sendto:localhost:8102
I next use VLC to connect to localhost:8102, but image is like this:
The text was updated successfully, but these errors were encountered:
arogozhnikov
changed the title
Streaming from OT-2 camera example?
Example of streaming from OT-2 camera?
Dec 8, 2022
Need a somewhat-live stream of what's happening in opentrons. Can be low framerate and with delay.
Here is what I have so far:
I tried HLS (a simple way to get streaming that works in some browsers off-the-bat and requires only http access).
But seems that OT2's ffmpeg does not provide HLS as all commands with HLS in it were reported as incorrect.
I tried using mpegts, another protocol
I next use VLC to connect to localhost:8102, but image is like this:
The text was updated successfully, but these errors were encountered: