logo

Live Production Software Forums


Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
fluozh  
#1 Posted : Monday, March 6, 2023 3:49:42 PM(UTC)
fluozh

Rank: Advanced Member

Groups: Registered
Joined: 3/18/2021(UTC)
Posts: 30
Man
Japan
Location: Tokyo

Thanks: 10 times
Was thanked: 4 time(s) in 4 post(s)
hello, I was trying to understand how TCP API works.
So I made simple Library for Rust, it is now capable to receive/send commands.
however, it seems some events are missing from vMix side.(my code should be correct).
when I switch program by e.g. cut, sometimes TCP API does not send switched event.

log(correct behavior):
Code:
recv acts ActivatorsResponse { status: OK, body: InputPreview(57, false) }
recv acts ActivatorsResponse { status: OK, body: InputPreview(58, true) }
recv acts ActivatorsResponse { status: OK, body: Input(57, false) }
recv acts ActivatorsResponse { status: OK, body: Input(58, true) }

(input 57 deactivated, and 58 activated)

log(bug?)
Code:
recv acts ActivatorsResponse { status: OK, body: InputPreview(61, false) }
recv acts ActivatorsResponse { status: OK, body: InputPreview(57, true) }
recv acts ActivatorsResponse { status: OK, body: Input(60, false) }


(input 60 deactivated, vMix should send Input(57,true) event but it does not)

code: https://github.com/Flowi...lob/main/examples/cli.rs
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.