Search results

  1. Max

    качество аудио MCU

    Добрый день. Пример MCU клиента для iOS доступен на GitHub, документация здесь Пример MCU клиента для Android доступен на GitHub и в виде APK в сборке 1.1.0.24, документация здесь.
  2. Max

    Webrtc cannot be shown on ios chrome, safari, android chrome, but on chrome on windows?

    Self-signed certificate is not enough. Most browsers require a valid certificate issued by some CA. You can use free SSL certificates from Let'sEncrypt, but they must be renewed every 3 months.
  3. Max

    Webrtc cannot be shown on ios chrome, safari, android chrome, but on chrome on windows?

    Seems like server still unavailable using your example and Media Devices example on demo server Also please check if valid domain SSL certificates are imported to WCS server as described here. This can be a reason to fail on mobile browsers. Note that Chrome and other alternative browsers on...
  4. Max

    how to publish host and participant stream from different page and playback on home page?

    Yes. You can publish a stream in Two Way Streaming example and play the stream by its name in Player example.
  5. Max

    snapshort timeout problem and response time

    Good day. The server snapshots require transcoding, so please check if you server is powerful enough to decode a stream published, espacially if you are publishing 1080p. Approximately 2 CPU cores are required to transcode one 1080p stream. You can also take a snapshot locally to prevent...
  6. Max

    Webrtc cannot be shown on ios chrome, safari, android chrome, but on chrome on windows?

    Good day. We've checked your page. It's not working in Chrome on desktop too. Seems like WSS connestion is not established to your server to the port 8443, please check if WCS server is up and this port is not blocked.
  7. Max

    how to publish host and participant stream from different page and playback on home page?

    Good day. In MCU video stream, you will always see all the pictures (the host and all the participants), so playing host stream and participants streams separately seems excessive if you're playing MCU stream. Anyway, you can play a number of video streams simultaneosly, each in its own div...
  8. Max

    Проблема с chat rooms

    Дело в том, что объект Flashphoner не экспортируется непосредственно из исходных текстов пакета, он формируется при сборке скрипта flashphoner.js для использования в браузере, см файл node_modules/@flashphoner/websdk/Gruntfile.js: ... browserify: {...
  9. Max

    RTSP doesnt work :(

    You can receive a license error (and other errors) on client using Stream.getInfo() method. Please see error handling code example here
  10. Max

    RTSP doesnt work :(

    There is a message in your server log: 08:47:21,731 ERROR Softphone - main License error License period is expired Sat May 01 08:47:21 UTC 2021 Sat Apr 24 00:00:00 UTC 2021 Sat May 01 08:47:19 UTC 2021 Please check if your trial license period is expired. If not, please check if NTP...
  11. Max

    RTSP doesnt work :(

    Double check settings in flashphoner.properties ip=192.168.0.128 ip_local=192.168.0.128 Send server logs using private form
  12. Max

    When I change the port on the demo license, I get an error.

    >Well when I add this, am I unable to use the rest api service? There are two REST APIs 1) REST API When you send a request to server, i.e. https://host:8444/rest-api/stream/find_all 2) REST Hooks When server sends a callback to back-end, i.e. WCS sends request to default back-end...
  13. Max

    RTSP doesnt work :(

    Looks like SSL issue. Make sure connection established. https://demo.flashphoner.com/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.html Check F12 - Network in Chrome. Do you see any network or SSL issues?
  14. Max

    Проблема с chat rooms

    Здравствуйте. Посмотрите вкладку F12 - Network если в Chrome. Куда идет коннект. Должен быть указан валидный wss:// адрес с доменом. Например: wss://mydomain.com:8443, при этом, на стороне сервера должны быть импортированы web SSL сертификаты чтобы этот коннект проходил.
  15. Max

    Проблемы с подключением к WS

    Откатить можно так: update app -l "http://localhost:8081/apps/EchoApp" defaultApp https://docs.flashphoner.com/pages/viewpage.action?pageId=9241150 Тогда будет показывать этот урл для defaultApp
  16. Max

    Управление микрофоном/звуком для iOS sdk

    В последних сборках iOS SDK в примере Player микрофон не запрашивается, если соответствующий permission не указан явно в Info.plist приложения. Однако, если поток играть в примере, предназначенном в том числе для публикации (и в Info.plist есть микрофон), то запрос доступа к микрофону будет...
  17. Max

    Failed by RTP activity

    Please restart WCS. If the problem still persists, please collect a report as described here and send using this form.
  18. Max

    webrtc user authentication

    Good day. Please look at the step by step example how to implement user authetication via REST hook.
  19. Max

    Проблемы с подключением к WS

    Вы реализовали свой бэкенд. Проверьте, что он отвечает на REST hook https://нашдомен/rest-hooks/connect, реализован ли метод https://нашдомен/rest-hooks/ConnectionStatusEvent, и что он отвечает. Пример реализации REST hook /connect, с зеркалированием всех остальных запросов, приведен в документации.
  20. Max

    RTSP Streaming issue

    Good day. Since build 5.2.946, the parameter h264_check_and_skip_annexb is removed from settings, and AnnexB frames are detected and played automatically.
Top