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
Describe the bug
When I send a timed screenshot request to the Egress server, I notice that the server continues to capture images even after the video stream stops publishing. However, the generated images are all completely black.
I would like to know if this is the intended behavior. Should the Egress server automatically stop capturing images when no video is being published? Alternatively, could you provide an API for developers to explicitly signal the Egress server to stop at an appropriate time?
Egress Version
docker hub image livekit/egress:latest
egress generates video_test_src to ensure there is always video track available, so when you stop, it may be falling back to that. I'm not sure if this is the intended behavior but you can always stop egress when publisher stops.
egress generates video_test_src to ensure there is always video track available, so when you stop, it may be falling back to that. I'm not sure if this is the intended behavior but you can always stop egress when publisher stops.
Egress is a server for every room in LiveKit. I can't stop it when a room stops publishing video; it should keep running always.
Describe the bug
When I send a timed screenshot request to the Egress server, I notice that the server continues to capture images even after the video stream stops publishing. However, the generated images are all completely black.
I would like to know if this is the intended behavior. Should the Egress server automatically stop capturing images when no video is being published? Alternatively, could you provide an API for developers to explicitly signal the Egress server to stop at an appropriate time?
Egress Version
docker hub image livekit/egress:latest
Egress Request
req := &livekit.RoomCompositeEgressRequest{} req.RoomName = "LOTUS-test-ljl" req.ImageOutputs = []*livekit.ImageOutput{ { CaptureInterval: 10, FilenamePrefix: "livekit/egress-image/", FilenameSuffix: livekit.ImageFileSuffix_IMAGE_SUFFIX_INDEX, Output: &livekit.ImageOutput_AliOSS{ AliOSS: &livekit.AliOSSUpload{ AccessKey: "LTxxxxxxxxSN", Secret: "xrFyyyyyyyyyibeEyvlU", Region: "cn-hangzhou", Endpoint: "https://oss-cn-hangzhou.aliyuncs.com", Bucket: "loxxxxxxco", }, }, }, } egress, err := EgressClient.StartRoomCompositeEgress(context.TODO(), req)
Additional context
black picture
Logs
Post any relevant logs from the egress service here.
The text was updated successfully, but these errors were encountered: