Search results

  1. Max

    all stopped working after update to 5.2

    Good day. What versions of a WebSDK and WCS do you have installed? This information can be found in the files: WCS_HOME/client2/client.version WCS_HOME/conf/WCS.version And Java version: java -version Ports have been changed for the REST API: port 8081 is now used with http, instead of 9091...
  2. Max

    Add stream currentTime to Stream class

    Good day. The browser sets the currentTime property based on timestamps in video, relative to video playback beginning. This is intended primarily for navigation purposes. So please clarify what kind of delay you trying to calculate on frontend?
  3. Max

    Support for 302 - Moved Temporarily

    Good day. We released the build 5.2.179 with 302 Moved Temporarily redirect support for RSTP streams. Please update to this build and check.
  4. Max

    on(STREAM_STATUS.FAILED, function () {

    You should wrap publishing code to the function publishStreamFunc() function publishStreamFunc() { pubStream = session.createStream(optionsStream).on(STREAM_STATUS.PUBLISHING, function (pubStream) { ... }).publish(); } and then call this function from retryToRestart() function...
  5. Max

    Experiencing a lot of disconnections after 30-63 seconds

    Good day. Is the problem reproduced with example applications?
  6. Max

    on(STREAM_STATUS.FAILED, function () {

    Good day. We will look at your code and write the answer later.
  7. Max

    on(STREAM_STATUS.FAILED, function () {

    We discuss this problem in this topic You should adopt the example from this post to resume stream publishing, i.e. use STREAM_STATUS.PUBLISHING to check the stream status, move createStream() and publish() calls to separate function to call it when stream goes to FAILED status etc.
  8. Max

    Experiencing a lot of disconnections after 30-63 seconds

    Two Way Streaming: https://yourserver:8444/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.html Media Devices: https://yourserver:8444/client2/examples/demo/streaming/media_devices_manager/media_device_manager.html. This example app displays publishing and playing statistics...
  9. Max

    on(STREAM_STATUS.FAILED, function () {

    If you have to resume both playback and publishing, you should adopt the example code from this post to handle both cases.
  10. Max

    Experiencing a lot of disconnections after 30-63 seconds

    Please check also if streaming from iOS is stopped using example application (Two way Streaming or Media Devices).
  11. Max

    Experiencing a lot of disconnections after 30-63 seconds

    Good day. We checked your server log. Stream publishing stops by RTP activity timeout, it means client stops sending media data. The possible reason may be device orientation changing (turning from portrait to landscape adn vice versa), in this case iOS Safari stop sending video. The latest WCS...
  12. Max

    on(STREAM_STATUS.FAILED, function () {

    Good day. Please clarify: are you trying to resume stream playback (as in example we provide above) or stream publishing? In theory, it should work, but we did not test stream publishing auto resume. In this case, you should use corresponding stream status to check if it is published...
  13. Max

    Flashphoner Warning (RtpVideoConfig - pool-2252-thread-2 Codec not found; pt - 119; current pt - 95)

    Good day. To fix it create file rtmp_agent.sdp with the following content: v=0 o=- 1988962254 1988962254 IN IP4 0.0.0.0 c=IN IP4 0.0.0.0 t=0 0 a=sdplang:en m=video 0 RTP/AVP 95 a=rtpmap:95 H264/90000 a=fmtp:95 profile-level-id=42e01f;packetization-mode=1 m=video 0 RTP/AVP 119 a=rtpmap:119...
  14. Max

    Experiencing a lot of disconnections after 30-63 seconds

    Good day. Unfortunately, we did not receive your logs by email. You can place logs on any resource and send us a URL link to download. To solve problems with a stream ("Experiencing a lot of disconnections after 30-63 seconds"), use WebRTC stream publishing over TCP. WebRTC over TCP usage is...
  15. Max

    Stream Playing in vlc , but problem in embedded player

    Good day. You need to create SDP settings files, then restart server as described in another topic here. Try streaming your content as RTSP instead of RTMP. To a stream described in the email ,we raised an internal ticket (WCS-2067) to check and fix this issue.
  16. Max

    Easiest way to collect a list of stream parts with start/end timestamps

    Alan, good day. We could not reproduce your problem. Please, collect a report as described here and send to support@flashphoner.com, we will check.
  17. Max

    on(STREAM_STATUS.FAILED, function () {

    Good day. You can modify Player example to automatically restart a stream playback: var retryToRestartTimeout = 3000; //ms var addMilesecondsToRestartTryOnEveryFailed = 1000; //ms var retryMaxTimes = 100; var retryCount = 0; var isManualStopped = false; ... function playStream() { ...
  18. Max

    No Audio in Microsoft Edge (42.17134.1.0)

    Good day, Marc. We raised an internal ticket WCS-2063 to check and fix this issue.
  19. Max

    Experiencing a lot of disconnections after 30-63 seconds

    Good day. Please attach server logs (WCS_HOME/logs/server_logs), when stream was disconnected or send to support@flashphoner.com.
  20. Max

    Удаление записей

    Добрый день. после записи трансляций, WCS больше не занимается управлением этим контентом. Далее всеми данными, организацией, хранением и обработкой контента занимается пользователь. какой дополнительный функционал вы хотели бы видеть в WCS?
Top