Search results

  1. Max

    connection establishment problem

    1. Regarding ports. 8444 - dashboard panel HTTPS 8081 - dashboard panel HTTP 8443 - websocket WSS 8080 - websocket WS So if you set AWS loadbalancer, it should forward ports, i.e. 8444 > 8081 8443 > 8080 or 8444 > 8444 8443 > 8443 In such a case you set SSL certificates on Load balancer...
  2. Max

    Problem with multi-record(VP8 codec)

    As an option, you can transcode all VP8 streams to H.264 using Transcoder API. Once stream is being transcoded, it can be added to the multi-recorder. Please note. Single transcoding session may use 1-2 physical CPU cores on the server.
  3. Max

    Adaptive bitrate control

    >Do we have anything that can automatically adjust bitrate as per internet speed without doing anything? Desired bitrate should be passed before subscribing (playing) on the stream. It won't be changed automatically for each viewer.
  4. Max

    Шаринг экрана смартфона через iOS/android sdk

    Для этого надо воспользоваться функцией inject (замена потока) https://docs.flashphoner.com/pages/viewpage.action?pageId=23038525 1. Отправляем стрим с экрана как отдельный стрим, например "main". 2. Отправляем стрим шаринга, например "sharing". 3. С помощью REST запроса /inject, делаем вставку...
  5. Max

    connection establishment problem

    You should buy a valid SSL certificate for your WCS server domain, then import SSL certificate via WCS web admin interface.
  6. Max

    Adaptive bitrate control

    Good day. In this case, stream should be transcoded to desired resolution/bitrate. Let's suppose you plaing the stream as WebRTC. You can check viewer channel quality at client side as described here, and, if quality is bad, stop the playing stream and request it with desired constraints...
  7. Max

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

    Попробуйте получить данные в MediaRecorder, как в примере Media Devices. Если так не работает, то, скорее всего, одновременно со стримом получить данные нельзя. В этом случае есть вариант перехватывать аудиоданные на стороне сервера.
  8. Max

    Problem with multi-record(VP8 codec)

    They claim hardware decoding support, but not software implementation. This doc should help.
  9. Max

    Problem with multi-record(VP8 codec)

    This test shows that a browser supports H264 encoding/decoding. But system itself may not support this codec. Android SDK uses codecs available to the system itself only. So if you wish to stream H264, seems like you should use Web SDK in browser or in WebView. Another option is to use stream...
  10. Max

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

    Добрый день. Поскольку приложение одно и то же, то, если разрешение на доступ к микрофону дано пользователем, можно получить с него данные. Если в данном случае достаточно публиковать только видео, то можно отключить публикацию аудио в констрейнтах. В этом случае Вы можете отдельно получить...
  11. Max

    Stream Status is Playing but no streaming

    Please provide RTSP camera public IP address using this form. If you cannot, collect a report as described here and collect traffic dump as described above. Send using this form. Or provide SSH access to the server form which the camera is available using this form.
  12. Max

    Stream Status is Playing but no streaming

    This is local (LAN) IP address 192.168.1.140 So we can't connect to this address to check issue. Please provide public IP address. As an option, you can dump traffic using Wireshark and send us the dump for analyzing. 1. Run Wireshark capture. 2. Play in VLC. 3. Stop capture and make sure the...
  13. Max

    Stream Status is Playing but no streaming

    Please provide RTSP url using this form or post it right here
  14. Max

    Support for install WCS in Ubuntu Desktop

    Yes, you can expect support on this forum. There is no difference between Ubuntu desktop and Ubuntu server at this point.
  15. Max

    https//:localhost:8444/ not opening

    Use the following parameter https.port=443 Please note that you cannot set the same port for REST API, web interface etc and websocket port. But, if you set up Nginx as reverse proxy, you can use a different URLs on the same port, for example: # Websocket location /wss { proxy_set_header...
  16. Max

    Problem with multi-record(VP8 codec)

    Good day. As clearly mentioned in documentation, multiple recording feature is supported for H264 streams only, because MP4 container is used. Please use StreamOptions.setStripCodecs() method in Android SDK (see example on GitHub): StreamOptions streamOptions = new...
  17. Max

    Support for install WCS in Ubuntu Desktop

    Good day. WCS can be installed to any desktop Linux OS by the same way as to server OS: wget https://flashphoner.com/download-wcs5.2-server.tar.gz tar -xvzf FlashphonerWebCallServer-5.2.XXXX.tar.gz cd FlashphonerWebCallServer-5.2.XXXX sudo ./install.sh
  18. Max

    https//:localhost:8444/ not opening

    You can change Websocket port with the following parameter wss.port=443 Or you can setup reverse proxy using Nginx.
  19. Max

    connection establishment problem

    Please check if you're opening 8444 port as HTTPS, not HTTP. Or set LB to redirect HTTP to the port 8081. See LB setup example here, p 2.3.
  20. Max

    Setup SIP with FlashPhoner

    Good day. We've added the connection to an existing session feature to Android SDK in build 1.1.0.55. Please read Android SDK docs for details Connection to an existing session Android Phone
Top