Search results

  1. Max

    Disconnecting the client's video connection on the server side

    Good day. You can terminate any client connection at server side by REST API query /connection/terminate: POST /rest-api/connection/terminate HTTP/1.1 Host:192.168.1.101:8081 Content-Length: 55 Content-Type: application/json { "sessionId":"/192.168.1.102:39564/192.168.1.101:8443" } You...
  2. Max

    Call Kit and Flashphoner

    We raised the ticket WCS-3420 to implement this example. But this can be implemented only after WCS-3393. Please be patient.
  3. Max

    Setup SIP with FlashPhoner

    We working on it in ticket WCS-3393. There is no progress yet due to more priority tasks.
  4. Max

    AdapterJS is not defined

    Good day. Please look at Two Way Streaming Vue example (and its source code on GitHub). The example is successfully built and running in our tests. Try it, if this works, please check your source code.
  5. Max

    How to embed multiple players in one webpage?

    https://demo.flashphoner.com/client2/examples/demo/streaming/2players/2players.html https://demo.flashphoner.com/client2/examples/demo/streaming/2players/2players.js Take a look at this sample. It is better than iframes. Yes you have to use Web SDK (flashphoner.js lib) to implement such sample...
  6. Max

    How to embed multiple players in one webpage?

    Good day We cannot reproduce the issue with this elementary example: 1. Open Media Devices example on our demo server: https://demo.flashphoner.com:8888/client2/examples/demo/streaming/media_devices_manager/media_device_manager.html 2. Publish stream test from webcamera 3. Duplicate the page...
  7. Max

    Доступ к микрофону после запуска стрима Abdroid/iOS SDK

    Этого можно добиться следующим образом: 1. Остановить текущую публикацию 2. Вызвать Flashphoner.releaseLocalMediaAccess(), чтобы отпустить камеру и микрофон 3. Опубликовать поток без аудио StreamOptions streamOptions = new StreamOptions(streamName); Constraints...
  8. Max

    How can I reach the number of instant viewers?

    Try to add server-side setting flashphoner.properties load_balancing_acao_header=* This setting should result to header: Access-Control-Allow-Origin: *
  9. Max

    Stream Status is Playing but no streaming

    It may take a time to reconstruct the stream from provided dump. If you provide direct RTSP URL or SSH access, it may speed up the process. You can provide additional details using the same form.
  10. Max

    connection establishment problem

    Every SSL certificate consists of domain certificate, authority center (CA) certificate and private key. You should get this from your certificate provider. Please read also this article.
  11. Max

    Stream record FPS problem

    Good day. WebRTC may change FPS depending on channel bandwidth and quality. So effective FPS may differ from value set in constraints. Please clarify: - what WCS build do you use? - what data ffprobe shows for the file? ffbprobe file.webm - how this file is playing: are there freezes...
  12. Max

    How can I reach the number of instant viewers?

    Please provide a sample webpage showing how do you perform the request using this form.
  13. Max

    Доступ к микрофону после запуска стрима Abdroid/iOS SDK

    К сожалению, так сделать нельзя. При освобождении камеры и микрофона (для чего есть метод Flashphoner.releaseLocalMediaAccess()) захват видео/аудио останавливается, для того, чтобы возобновить захват, требуется повторная публикация потока. Метод Stream.muteAudio() предназначен именно для...
  14. Max

    Не скачивается Web SDK 2.0.208

    Добрый день. Сборка WebSDK 2.0.208 выгружена.
  15. Max

    Problem with multi-record(VP8 codec)

    We do not provide ETA for feature request on the forum. But we can raise implementation priority if more customers request the feature. For temporary workaround, you can use on demand transcoding as recommended above
  16. Max

    Problem with multi-record(VP8 codec)

    >According to the stream-recording documentation, the flashphoner can record a stream with the VP8 codec. It's correct. WCS can record single stream in webM (vp8 codec). These two features are bit different: Single stream recording...
  17. Max

    How to enabling transcoding

    When you set disable_streaming_proxy=true Transcoding will be started upon playback only. The multi-recorder will not trigger transcoding automatically. Try to launch transcoding manually using REST API as described in the docs. Option1. REST API. Make a bash script using REST API which...
  18. Max

    SRT support

    Seems like SRT publishing/playback is not supported in browsers yet, but ffmpeg-based tools (ffmpeg itself, OBS, Gstreamer) support it. So we consider MPEG-TS over SRT publishing from ffmpeg implementation.
  19. Max

    SRT support

    Good day. We're working on it in ticket WCS-2680. Today, SRT is implemented as internal CDN transport, and SRT will be implemented for stream publishing. We let you know here.
  20. Max

    connection establishment problem

    If you've imported SSL certificate for domain, the IP address becomes unsecure at browser point, even if this is the address bound to domain name. So no, you should not replace a valid domain name with IP address.
Top