Search results

  1. Max

    Server Crash

    Seems like the rsync operation consumes most of channel bandwidth, so freezes andframe losses occur in streams published. According to mixer settings, you're using non-realtime mixer mixer_realtime=false ... mixer_out_buffer_enabled=true mixer_out_buffer_initial_size=3500...
  2. Max

    HLS edge server not playing

    Usually, mobile applications uses WebView to play HLS. So it depends on WebView implementation on a certain platform, but it behaviour should not differ from default browser. If, however, you 've created mobile application from scratch including HTTP custom implementation, you have to implement...
  3. Max

    При воспроизведении видео нет звука.

    Добрый день. Используйте функцию Stream.unmuteRemoteAudio(), например stream = session.createStream(options).on(STREAM_STATUS.PENDING, function (stream) { ... }).on(STREAM_STATUS.PLAYING, function (stream) { stream.unmuteRemoteAudio(); ... })...
  4. Max

    Firefox issue

    This is Firefox bug, we reported it and they will fix it in 79 or 80 https://bugzilla.mozilla.org/show_bug.cgi?id=1652426#c7 The workaround is to play audio only stream in Firefox with constraints constraints: {audio: true, video: false}
  5. Max

    Flasphoner webrtc not playing in the Firefox.

    It didn't gather memory dump and jstack (utility link is supposed to be configured). For the playback issue, logs and configs may be sufficient, so please send the generated report.
  6. Max

    We hope this function. "Add or change overlay graphics"

    No, it's our custom implementation
  7. Max

    [URGENT] Support external camera

    We raised internal ticket WCS-2805 and will let you know about results. We do not provide ETA for new feature requests, because it depends on user votes for the feature. Please read this thread for example. But in iOS case, you should link with libwebrtc, use hints from StackOverflow and...
  8. Max

    HLS edge server not playing

    Unfortunately, no. This is Chrome oversecurity issue. The domain name, protocol and port should be exactly the same as request source.
  9. Max

    Issue with Video chat and Screen sharing (two way communication)

    MCU view with screen sharing is the same for all participants including publisher. Publisher can attach to PC and share a second screen if you do not wish to see its own browser page. Enable the following option mixer_display_stream_name=true and name streams as users, for example user1#room1
  10. Max

    iOS stream switch camera issue

    Good day. Check if the problem is reproduced on Two Way Streamin example out of the box. If no, please provide us a code example based on Two Way Streaming with minimal changes to reproduce the problem, and sen using this link, we will check.
  11. Max

    iOS RTCEAGLVideoView layout issues

    Nothing, just passing it to WebRTC library All the application examples uses auto layout. So, please prepare a code example based on Two Way Streaming (if the problem occurs when publishing) or Player (if the problem occurs when publishing) example with minimal changes to reproduce the problem...
  12. Max

    [URGENT] Support external camera

    Under the hood, WCS Android SDK uses org.webrtc.Camera1Capturer to capture frames from selected camera (and org.webrtc.Camera1Enumerator to select a camera), then uses networking part of org.webrtc to send data to server. If you could implement your custom CameraCapturer, and we could allow...
  13. Max

    Backup Stream

    Good day. You can use REST hook /StreamStatusEvent to get FAILED status of the original stream on server. When FAILED status is detected, backend should send signaling message to frontend. On receiving this message, frontend should request HLS playlist of the backup stream. To speed up...
  14. Max

    Микширование видеопотока и аудио

    Добрый день. В этом классе меняется только размещение картинок в микшере, сами кадры при этом никак не изменяются. Для обработки декодированных кадров необходимо реализовать другой класс. Отметим, что, в отличие от попиксельного изменения кадров, изменение аудиосоставляющей может привести к...
  15. Max

    streaming from ReactNative app

    Yes. You have to test a channel, adopt bitrate/resolution to channel quality, then use adopted parameters in mobile application (you can add application settings rather than hardcode them). Server itself works out of the box. But there is a channel between client and server. Channels are...
  16. Max

    ipv6 and ipv4

    Good day. We checked your server settings. First, you must update WCS to 5.2.660 or later. In 5.2.259 that you're using now, tcp6 ports can be listened, but IPv6 WebRTC candidates are not supported yet: cd /usr/local/FlashphonerWebCallServer ./webcallserver stop ./webcallserver update After...
  17. Max

    Update the WCS Server

    Hello, Configs in conf and .sh-scripts in bin will not be changed in update. For a backup, copy the directory, or the modified configs and wss.jks.
  18. Max

    OBS unable to reconnect after internet lose

    Try disabling automatic reconnect in OBS (in Advanced settings). Reproduced OBS hang-up on attempt to stop streaming when connection to WCS is restored after OBS loses connection and "reconnects" when RTMP port is closed on WCS. Created internal ticket WCS-2804 - will notify when there is an...
  19. Max

    OBS unable to reconnect after internet lose

    You can submit report using this link. We will check logs. How to create report cd /usr/local/FlashphonerWebCallServer/tools sudo ./report.sh --sysinfo --conf --tar https://docs.flashphoner.com/display/WCS52EN/Preparing+an+error+report
  20. Max

    Can not start transponder Error

    Hello Please check official docs Case 1 - Publish webrtc and playback RTMP 1. Publish WebRTC stream to WCS server. https://docs.flashphoner.com/display/WCS52EN/From+a+web+camera+in+a+browser+via+WebRTC 2. Playback RTMP stream from WCS server...
Top