Search results

  1. Max

    CDN - failed to connect to origin server

    Default HLS ports hls.http.port = 8082 hls.https.port = 8445 Vaild HLS URLs http://edge.mycompany.com:8082/stream1/stream1.m3u8 https://edge.mycompany.com:8445/stream1/stream1.m3u8 Here stream1 is stream name Do you play correct URLs? Please attach full logfile.
  2. Max

    Unable to stream video from Pelco VideoXpert VMS

    To proceed we need: 1) Public RTSP url. or 2) SSH sudo access to the server. If it is private server we would need 24/7 Teamviewer access to a desktop PC in your network where we can work with SSH, RTSP, VLC. Please send details to support@flashphoner.com
  3. Max

    CDN - failed to connect to origin server

    CDN internal signaling is going on TCP port 8084. So this port must be open on each CDN node. cdn_port = 8084 Media traffic (audio + video) works via UDP ports media_port_from = 31001 media_port_to = 32000 So UDP range [31001-32000] should be open too...
  4. Max

    ре-публикации WebRTC как RTMP в HTML5 страницу

    Это тестовый Flash Player, который присутствует на странице для того, чтобы проверить, действительно ли RTMP поток публикуется на сторонний сервер. Поэтому надо либо в Chrome браузере включить Adobe Flash Player (выключен по-умолчанию), либо проверить RTMP поток с помощью другого плеера...
  5. Max

    ре-публикации WebRTC как RTMP в HTML5 страницу

    Сценарий работы следующий: 1. Пользователь заходит на страницу и публикует поток с веб-камеры. Поток публикуется вызовом JavaScript createStream().publish(); Подробнее в документации: https://docs.flashphoner.com/pages/viewpage.action?pageId=9241217 2. После того, как поток опубликован на...
  6. Max

    400 BadRequest with RestAPI

    Please try to send the same REST API QUERY to the server directly. If you still receive 400 Bad Request, please collect a report as described here and send to support@flashphoner.com, we will check
  7. Max

    Troubleshooting 360 streaming - No m3u8 responce.

    Good day. Please make sure that you are using the code example from the article: <!DOCTYPE html> <html lang="en"> <head> <script type="text/javascript" src="../../../../flashphoner.js"></script> <script type="text/javascript" src="vr-player-min.js"></script> <script...
  8. Max

    rtmp republishing artifacts replay issues

    Please clarify what resolution do you streaming and what resolution do you set for republishing? How much streams are published simultaneously? Transcoding consumes a much of server resources, so resizing from 2 to 4 vCPUs is not enough. Please consider more powerful configuration. We also...
  9. Max

    Manager log is not generated in logs folder

    Please see tthe section Testing on this page: "More instances will be started in case scaling is triggered. (For testing purposes, streaming with transcoding – e.g., streaming RTMP to auto created mixer – can be used to load server CPU.) All the started instances will be auto added to the...
  10. Max

    400 BadRequest with RestAPI

    In the AWS LB deploying example, websocket connection is used to publish/play the stream. Is this working? Note that all the REST API requests should be sent to certain server, not to load balancer entry point because they can be routed by load balancer to wrong server.
  11. Max

    Player start muted

    Good day. We cannot reproduce the issue neither with Player nor Embed Player examples. Please check if stream is not muted on publisher side. Also please provide us Player code example with minimal modifications to reproduce the issue.
  12. Max

    WSS Player with auto-play and auto-restore if lost stream

    Good day. You should pass session to playStream function to create a new stream function retryToRestart(){ console.log("Into the Function"); if (retryCount < retryMaxTimes){ setTimeout(function(){ if (stream && (stream.status() != STREAM_STATUS.PLAYING)){...
  13. Max

    Playing Adverts into the stream

    Good day. You should enable REST API authentication by setting the following parameter disable_rest_auth=false Then you should add user and password for REST API queries using CLI as described here ssh -p 2001 admin@localhost add user rest_user rest_user_password After that, you should use...
  14. Max

    rtmp republishing artifacts replay issues

    Good day. This is the known OBS issue: you should set the following parameter in flashphoner.properties keep_alive.enabled=websocket,rtmfp to prevent disconnection. Also please set encoding profile to baseline and encoding preset to ultrafast to prevent B-frames in RTMP stream if you will...
  15. Max

    is it possible Screen sharing to rtmp re-stream ?

    Good day. You can use REST API to republish screen sharing stream (or any stream published to server) to RTMP server POST /rest-api/push/startup HTTP/1.1 Content-Type: application/json { "streamName": "screen", "rtmpUrl":"rtmp://rtmp_server:1935/live" }
  16. Max

    Manager log is not generated in logs folder

    That link is to WCS 5.1 doc. WCS 5.2 does not have the manager module. WCS 5.2 doc: https://docs.flashphoner.com/display/WCS52EN/Starting+and+stopping
  17. Max

    400 BadRequest with RestAPI

    Hello, Please give an example of such request. REST client screenshot can be attached or sent to support@flashphoner.com.
  18. Max

    Организация CDN в разных локациях.

    Добрый день В настоящее время в рамках одной CDN так настроить нельзя, при захвате потоков одним Origin сервером с другого поведение Edge серверов при построении маршрутов воспроизведения потока не определено. Параметр cdn_origin_to_origin_route_propagation должен быть в значении по умолчанию...
  19. Max

    session.sendData() не удается получить ответ

    Добрый день. Функция sendData() только отправляет данные бэкенд-серверу. На бэкенд-сервере должен быть настроен REST hook /OnDataEvent, который, поймав сообщение от сессии, разошлет его сессиям-адресатам при помощи REST API вызова /rest-api/data/send Например, получив объект { "nodeId" ...
  20. Max

    Переключение трэков MediaStream при трансляции WebRTC потока как RTMP

    Для этого нужно выставить соответствующее размещение картинок настройкой mixer_layout_class=com.flashphoner.media.mixer.video.presentation.CenterNoPaddingGridLayout В этом случае отступов не должно быть вообще
Top