Search results

  1. Max

    Cannot play rtsp stream

    Good day. Please, tell us more about your case. You want to change the video position on the http page, or transcode stream at a specific resolution? And additionally specify how you will play stream.
  2. Max

    Cannot play rtsp stream

    You tried using WebRTC with HTTP. WebRTC media provider is not available in Firefox if the connection is not secure - use HTTPS (SSL certificates have to be imported).
  3. Max

    iOS VideoChat roomApp

    Эта проблема связана с WebRTC библиотекой, которая статически линкована в iOS SDK и без которой мы, по понятным причинам, обойтись не можем. Попробуйте в Вашем проекте в Other linker flags добавить флаг "-ObjC" либо заменить флаг "-force_load" на "-ObjC". См также дискуссию здесь и вопрос здесь.
  4. Max

    Screen Sharing-Electron

    Good day. Screen sharing may be implemented by two ways: with or without Chrome extension. Electron is probably does not support Chrome extensions, so you have to impelemet screen sharing without extension as described here. Note that there are some limits in this case: 1. Picture resolution is...
  5. Max

    iOS VideoChat roomApp

    Уточните, пожалуйста: падает пример VideoChat, собранный из исходных текстов с GitHub, без каких-либо изменений?
  6. Max

    iOS VideoChat roomApp

    Добрый день. Для решения этой проблемы нужно закомментировать следующие строки в файле /WCSExample/TwoWayStreaming/ViewController.m case kFPWCSStreamStatusInfoNoAvailableTranscoders: view.text = @"No available transcoders for stream"...
  7. Max

    Android VideoChat roomApp

    Добрый день. RoomApi построено как обертка над стандартными возможностями WCS SDK с использованием REST hook для подключения пользователей и обмена сообщениями в комнатах. Следовательно, Вы не можете использовать собственные REST hook приложения и кастомные данные, если Вы пользуетесь RoomApi...
  8. Max

    rtsp url for streaming

    Good day. RTSP URL is and address of RTSP stream from IP camera or from another source that you want to capture with WCS. Please see documentation for details.
  9. Max

    Cannot play rtsp stream

    Good day. Please provide more details to diagnose the problem: - browser and OS version - browser console logs - If you're testing your own WCS installation: - WCS version - WebSDK version - WCS logs collected as described here Also please provide us RTSP stream access to test Stream...
  10. Max

    Кастомный Микшер лейаут

    Добрый день. В новых версиях WCS вам следует использовать файл wcs-core.jar вместо файла tbs-flashphoner.jar.
  11. Max

    RTSP string format

    By default, WCS uses interleaved mode (TCP transport) to capture RTSP rtsp_interleaved_mode=true To capture UDP RTSP stream you should set rtsp_interleaved_mode=false in /usr/local/FlashphonerWebCallServer/conf/flashphoner.properties file, then restart WCS. In other hand, you can configure all...
  12. Max

    WSS Connection Error!

    If you're having trouble importing SSL certificate, please provide us SSH access to your server and your certificate files to support@flashphoner.com, we will help.
  13. Max

    RTSP string format

    Please clarify, what exactly option do you switch (screenshot)?
  14. Max

    RTSP string format

    If this device can stream RTSP, please follow the recommendations in this post
  15. Max

    WSS Connection Error!

    Good day. You should either receive and import valid SSL certificates (see step-by-step Let's Encrypt example here) or use HTTP as mentioned in this post. Note that you can publish WebRTC stream via Secure Websocket only.
  16. Max

    RTSP string format

    Good day. If [ip address] is WCS address, it is not possible. If [ip address] is IP camera address it should be possible. Please try to set the following parameters in WCS_HOME/conf/flashphoner.properties file rtsp_interleaved_mode=false rtsp_fail_on_error_track=false then restart WCS and...
  17. Max

    WSS Connection Error!

    Good day. You have to import valid SSL certificates over Dashboard/Security/Certificates (if you have certificates) or you can pass through the procedure of certificate import. Please, view the step-by-step solution in the documentation. Or you can use plain HTTP: http://WCS_address:8081/admin/...
  18. Max

    Не работает embed player

    Добрый день. В обращении к Вашему серверу из iframe поменяйте порт встроенного веб-сервера WCS с 8888 на 8444: <iframe id="fp_embed_player" src="https://server.witheyezon.com:8444/embed_player?urlServer=wss://server.witheyezon.com:8443&amp;streamName=&amp;mediaProviders=WebRTC" marginwidth="0"...
  19. Max

    Don’t know how to parse CABAC streams

    Добавили в документацию по захвату WebRTC в браузере, в раздел Известные проблемы.
  20. Max

    Не работает embed player

    На указанной Вами странице 3 элемента iframe. В элементе 1 указано имя потока, который в данный момент не опубликован на Вашем сервере streamName=5d5be0c4c0c12d003546ebbe Если попытаться проиграть это поток в примере Player, будет выведена ошибка "Session does not exist" В элементах 2 и 3 имя...
Top