forked from Github/frigate
Update go2rtc and implement stream probe to only show 2 way talk when supported (#11407)
* Support two way talk validation * Fix handling * Use go2rtc stream info to infer audio output * Update go2rtc * Update bundle policy * Formatting
This commit is contained in:
@@ -3,3 +3,30 @@ export type VideoResolutionType = {
|
||||
width: number;
|
||||
height: number;
|
||||
};
|
||||
|
||||
type LiveProducerMetadata = {
|
||||
type: string;
|
||||
url: string;
|
||||
remote_addr: string;
|
||||
user_agent: string;
|
||||
sdp: string;
|
||||
medias: string[];
|
||||
receivers: string[];
|
||||
recv: number;
|
||||
};
|
||||
|
||||
type LiveConsumerMetadata = {
|
||||
type: string;
|
||||
url: string;
|
||||
remote_addr: string;
|
||||
user_agent: string;
|
||||
sdp: string;
|
||||
medias: string[];
|
||||
senders: string[];
|
||||
send: number;
|
||||
};
|
||||
|
||||
export type LiveStreamMetadata = {
|
||||
producers: LiveProducerMetadata[];
|
||||
consumers: LiveConsumerMetadata[];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user