This message was deleted.
# cloud
s
This message was deleted.
m
it shows this video
Im i do want to stream this
im not sure how to configure the egress, can you help me?
a
what do you see when you join the room
hello
?
m
I’m running the twitch like app example
When I enter I see the live stream sent from obs
d
@millions-state-67057 when you ingested the video, did you set a source type? currently our Egress template might only be looking for
TrackSource.Camera
types..
m
I created the ingress using this snippet
Copy code
const ingress = await ingressClient.createIngress(
          IngressInput.RTMP_INPUT,
          {
            name: input.roomSlug,
            roomName: input.roomSlug,
            participantName: input.streamerName,
            participantIdentity: input.roomSlug,
            video: {
              source: TrackSource.SCREEN_SHARE,
              preset: IngressVideoEncodingPreset.H264_1080P_30FPS_3_LAYERS,
            },
            audio: {
              source: TrackSource.SCREEN_SHARE_AUDIO,
              preset: IngressAudioEncodingPreset.OPUS_STEREO_96KBPS,
            },
          }
        );
d
looking at this, I think there might a bug that's attributing the source incorrectly. we are investigating.
CC: @able-gigabyte-21598
Hey @millions-state-67057, this should be fixed! The issue was that we weren't correctly setting an audio source that you were overriding. And because audio source was set to SCREEN_SHARE, during recording it was trying to display the audio track.. unsuccessfully.
Can you give it a try now and see if it's resolved for you?
m
Hey David thank you !! Do I have to update a local dependency ?
d
You don't have to. We've deployed the fixes to Ingress server in the Cloud deployment