Search results

  1. Max

    Stream is not playing

    Good day. You should not buy any additional license because recording features are already included. You can record all the REST streams captured by adding the following parameter to flashphoner.properties file: record_rtsp_streams=true Please also read the details about stream recording here.
  2. Max

    SIP phone is working, Video Demos are not

    We checked your server. About PHP warning: the reason is here: $api_method = array_pop(explode("/", $_SERVER['REQUEST_URI'])); Just replace it to $request_uri = $_SERVER['REQUEST_URI']; $api_method = array_pop(explode("/", $request_uri)); and warning should not appear again. About...
  3. Max

    SIP phone is working, Video Demos are not

    Please check line 2 of your index.php script, may be you're passing array to a function. In the log we see that stream is not publishing due to NPE 01:57:08,866 ERROR MediaHandler - API-ASYNC-pool-7-thread-119 publishStream exception java.lang.NullPointerException ... 01:57:08,866...
  4. Max

    Rtmp republish quality

    If there is no transcoding on WCS while republishing a WebRTC stream as RTMP, outgoing RTMP stream bitrate is always the same as published strem bitrate. Our tests with the latest Firefox build confirm that. So please check WebRTC incoming bitrate on WCS using REST API queries /stream/find or...
  5. Max

    https//:localhost:8444/ not opening

    You should buy a valid SSL certificate, then import it via web intefrace as described here.
  6. Max

    Setup SIP with FlashPhoner

    Good day. We fixed the connection to an existing session issue in WCS build 5.2.1087, Phone Min example corresponding fix is in WebSDK build 2.0.206. Please read this docs for details: Connection to an existing session We also raised the tickets to implement this feature support in Android SDK...
  7. Max

    С записью потоков не получается... REST API c 404 ошибкой.

    Для использования в продакшн среде, да. Встроенный веб-сервер WCS предназначен для тестирования, то есть Вы можете модифицировать код примеров WebSDK, расположенных в каталоге /usr/local/FlashphonerWebCallServer/client2, и добавлять туда свои примеры, тестировать их, но на продакшн нагрузку это...
  8. Max

    FPWCSApi2Stream check if front or back camera is used (iOS)

    Is the issue reproducing in Two Way Streaming example? If not, please modify the example code to reproduce the issue and send using this form
  9. Max

    Flashphoner error

    What application do you mean? Please provide the link, the application code, the RTSP URL to test using this form You can play all the recorded streams either in browser directly (if the files are in /usr/local/FlashphonerWebCallServer/records folder) by URL...
  10. Max

    Flashphoner error

    You can play recording files in browser directly by URL https://wcs:8444/client/records/file.mp4, but not as HLS or live RTSP.
  11. Max

    Conference record policy template

    Good day. Since build 5.2.1088, multiple streams recording folder can be set using the following parameter multi_record_dir=/opt/media Note that this folder should be writable, for example: sudo chmod o+w /opt/media
  12. Max

    Flashphoner error

    Then, clarify how exactly do you test: what stream name do you set to Stream field in Player example? Note that you cannot play a file this way, as we mentioned above. You can play only WebRTC stream, RTSP stream or RTMP stream.
  13. Max

    https//:localhost:8444/ not opening

    Use full path to run keytool: sudo /usr/java/jdk-14.0.1/bin/keytool ...
  14. Max

    SIP phone is working, Video Demos are not

    We checked your server. The issue is in your REST hook /connect implementation: you always add SIP credentials to register on SIP PBX. In this case, websocket session is intended to SIP calls only, not for streaming. The solution is to divide REST hook application to one for SIP calls and one...
  15. Max

    SIP phone is working, Video Demos are not

    Good day. Please provide SSH access to the server and access to WCS dashboard using this form, we will check.
  16. Max

    https//:localhost:8444/ not opening

    We checked the server. Seems like you're using self signed SSL certificate, so both WCS and SIP BPX claim Cetrtificate Unknown when trying to establish SIP TLS connection Please use a valid certificate or try to add self signed certificate to Java local storage as described here.
  17. Max

    С записью потоков не получается... REST API c 404 ошибкой.

    Добрый день. Посмотрите, пожалуйста, пример для включения записи при публикации с использованием WebSDK здесь и подробнее здесь Пример запроса на поиск опубликованных потоков с использованием curl по SSH непосредственно на сервере: curl -H "Content-Type: application/json" -X POST...
  18. Max

    FPWCSApi2Stream check if front or back camera is used (iOS)

    Good day. Please see the Media Devices example source code. It shows how to choose camera before publishing: - (FPWCSApi2MediaConstraints *)toMediaConstraints { FPWCSApi2MediaConstraints *ret = [[FPWCSApi2MediaConstraints alloc] init]; if ([_sendAudio.control isOn]) { ... }...
  19. Max

    Flashphoner error

    Please clarify what WCS build you're using. See /usr/local/FlashphonerWebCallServer/conf/WCS.version file. Player example is intended to play streams from server, not files. You can play recordings as VOD however, but: 1. You should place a recording file to...
  20. Max

    High CPU utilization after undefined events

    Good day. This is a known JDK 8 and JDK 11 issue: Java NIO threads used for websocket incoming connections handling consume CPU while waiting for incoming connections. You should update JDK to 12, 14, 15 or 16 from repository if available or manually as described here.
Top