wcs-core.properties
file:-Xmx=8g
-Xms=8g
Comment
field is suitable). The URL should work 24/7.We recommend to test with one RTMP server (where the issue is reproducing) to get a cleaner logs to detect a reason. For example:Regarding the streaming points we are simulcasting, not sure how that effects the output stream to YouTube curious to know why you suggest just one Rtmp server output?
flashphoner.log
. For example, if RTMP connection closed by server without error messages, this means a stream key is wrong or expired, so this is the issue with Youtube stream setup, but not WCS.Please reproduce the issue in Conference examplewe also have an issue with the room api.
https://wcs:8888/client2/examples/demo/streaming/conference/conference.html
. If the issue is not reproducing, modify Conference example source code minimally to reproduce the issue and send the code using the report form.Comment
field is suitable). This ingest point must be active 24/7.transcoding_disabled=true
transcoding_disabled=false
rtmp_out_buffer_enabled=true
rtmp_out_buffer_enabled=false
Now, most of streaming services require to send metadata. But, if there is no metadata sent, some media servers (Wowza, WCS for example) can get picture parameters directly from media packets. However, seems like Youtube does not support this.How do we send Height/Width of video and other sources if meta data is disabled?
rtmp_out_buffer_enabled=false
Please check if WebRTC can be published in Two Way Streaming exampleRegarding WEBRTC as RTMP republishing when a VPN is enabled the stream fails to connect. How can this be fixed?
https://wcs:8888/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.html
using VPN. If not (returns Failed by ICE timeout
, try to switch the client to TCP transportsession.createStream({
name: streamName,
display: localVideo,
...,
transport: "TCP"
}).on(STREAM_STATUS.PUBLISHING, function (stream) {
...
}).publish();