Search results

  1. Max

    abouut rest api rtmp pull

    The RTMP stream in the recording has no audio, therefore it fails on RTP activity after a minute. Add to flashphoner.properties rtp_activity_detecting=false,60 and restart the WCS to apply the setting. Then RTP activity detection will be disabled, and stream will not fail.
  2. Max

    IOS Google Chrome FullScreen не работает

    Добрый день. В iOS WebRTC поддерживается только в Safari, во всех остальных браузерах используется WSPlayer, в котором полноэкранный режим не поддерживается. Если играть поток по этой технологии в Safari, полноэкранный режим также не будет работать.
  3. Max

    abouut rest api rtmp pull

    You cannot pull stream and push stream in the same REST query. You should do the following: 1) Pull stream /rest-api/pull/rtmp/pull { "uri": "rtmp://13.233.141.185:5119/live/ub2020" } 2) Push stream /rest-api/push/startup { "streamName": "rtmp://13.233.141.185:5119/live/ub2020", "rtmpUrl"...
  4. Max

    Android SDK 1.1 or 1.0 is not supported to change the VideoCapturer

    Good day. We raised internal ticket (WCS-2234) and let you know results in this topic.
  5. Max

    Is there anyway to know if stream started to publish - Auto Play

    Good day. You can use Stream.available() method, please look at Two Way Streaming code example on GitHub. This method returns a promise that is resolved if stream with name specified is available to play, or is rejected if not: function availableStream(){ var session =...
  6. Max

    abouut rest api rtmp pull

    Good day. We've checked your server, but there's no any stream on it. So, you should do the following: 1. Reproduce your problem 2. Collect report as described here and send us to support@flashphoner.com
  7. Max

    Cannot play rtsp stream

    WebSocket connection can't be established. For establishing secure connection, Firefox requires SSL certificates. Or, non secure connection can be used: http://WCS:8081/admin/demo.html, ws://WCS:8080
  8. Max

    Android SDK 1.1 or 1.0 is not supported to change the VideoCapturer

    Good day. Please clarify what do you trying to implement. If you try to switch a camera from front to back and vice versa, please use publishStream.switchCamera() functions, see Media Device example source code on GitHub. If you try to capture something not from media device (camera and...
  9. Max

    HLS hls_auto_start

    Добрый день. На сборке 5.2.291 нам не удается воспроизвести проблему с Вашими настройками HLS: hls_server_enabled=true hls_enabled=true hls_auto_start=true hls_list_size=8 hls_time=2 При одновременной публикации 30 WebRTC потоков 640x480 H264+opus в каталоге WCS_HOME/hls создается 30...
  10. Max

    Publish низкого расширения (уменьшился в последней версии)

    Добрый день. Для того, чтобы отключить нормализацию ограничений, укажите при создании потока опцию, описанную здесь disableConstraintsNormalization: true например publishStream = session.createStream({ ... disableConstraintsNormalization: true, constraints { video: {...
  11. Max

    Не работает getRecordInfo

    Добрый день. В последних сборках запись потоков была сильно переработана, в том числе появились шаблоны имени файла {startTime}, {endTime}. В связи с этим, функция getRecordInfo() возвращает имя записанного файла по завершении записи, т.е. по событию UNPUBLISHED: ...
  12. Max

    HLS hls_auto_start

    Добрый день. Для теста с нашей стороны укажите, какую версию WCS вы используете: cat {WCS home directory}/conf/WCS.version
  13. Max

    Recording Issues

    Good day. We've tried to reproduce the problem and performed a series of load tests. The test "Several stream recording" is a synthetic load test that generates a huge load on publishing client, so key frames are sent one per minute even whel server generates a periodic request. Server in its...
  14. Max

    Can We do SimulCast By Web Call Server 5

    Good day. According the logs you've sent, the connection was closed by other side (Youtube, then Facebook). It seems like some network problem occured. You can enable RTMP push automatic reconnect to handle this. Please do the following: 1. Please update to actual release build from this page...
  15. Max

    MS Edge Playback Broken

    Hello, The loading icon issue in Player has been fixed in Web SDK v 0.5.28.2753.113.
  16. Max

    Can We do SimulCast By Web Call Server 5

    Good day. In your case you should do the following: 1. In WCS_HOME/conf/flashphoner.properties: - remove rtmp_transponder_stream_name_prefix = - add rtmp_transponder_full_url =true and restart WCS: systemctl restart webcallserver 2. Update WCS: - download the latest release build: wget...
  17. Max

    iOS SDK is not integrating to our app

    Hello, this is for the sample project you previously sent.
  18. Max

    Can We do SimulCast By Web Call Server 5

    Good day. We've checked your report. Seems like your second /push/startup query uses wrong stream name. Let's compare two log strings: 1) /push/startup to Facebook: 12:55:57,232 INFO ransponderController - HTTPS-pool-4-thread-377 handleRequest /rest-api/push/startup...
  19. Max

    Recording Issues

    Good day. Server calculates recording fragment duration by stream frames timestamps. So, recording file duration can be stretched if channel bandwith is less than minimal publishing bitrate, or due to packets loss, or if stream has few key frames. We have checked logs and dump. It seems like you...
  20. Max

    Set Timeout to access videos

    The issue has been fixed in WCS v. 5.2.280: server will respond with 404 Not Found if the requested file does not exist.
Top