Search results

  1. Max

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

    Это ограничение ознакомительной версии: водяной знак "This is a trial license of WebCallServer 5" Если вы покупаете лицензию, этот водяной знак не проигрывается.
  2. Max

    Mixer Layout Stream Labeling

    Good day. We released real-time MCU mixer in build 5.2.607. The new mixer is described here. Please try it, we'll wait for feedback.
  3. Max

    CDN - failed to connect to origin server

    The log fragment attached seems like you're trying to play HTTPS via HTTP port or vice versa. Aslo, please check if the same stream is playing correctly from Edge using WebRTC player. If not, please collect reports from both Origin and Edge as described here and send to support@flashphoner.com...
  4. Max

    rtmp republishing artifacts replay issues

    Good day. We tried to reproduce the issue on VPS with 4 vCPU (ESXi host): - stream 480x640 (vertical) is publishing from Media Device example (Chrome 81, Nokia 5 Android 9) with stripCodecs: "H264" - stream is republishing to localhost using REST API /push/startup (video transcoding) - RTMP...
  5. Max

    Audio Only stream not working on Firefox

    Good day. This is a well known issue. If you're streaming with constraints: {audio:true, video: false}, you must play the stream with the same constraints. You can check it on demo server using Media Device example in latest Firefox. Please do the following: - publish audio only stream from...
  6. Max

    Проблема с работой аудио и видео

    Добрый день. Уточните, пожалуйста, с каким разрешением и битрейтом публикуется поток ведущего? С каким битрейтом публикуются аудио потоки? Просуммировав битрейты участников, можно получить необходимую пропускную способность канала. Каждому участнику траслируются все потоки в чат-комнате, плюс...
  7. Max

    400 BadRequest with RestAPI

    To publish streams to different servers, you should publish any stream directly to the server, i.e. you should implement your own load balancing logic.
  8. 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.
  9. 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
  10. 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...
  11. Max

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

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

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

    Сценарий работы следующий: 1. Пользователь заходит на страницу и публикует поток с веб-камеры. Поток публикуется вызовом JavaScript createStream().publish(); Подробнее в документации: https://docs.flashphoner.com/pages/viewpage.action?pageId=9241217 2. После того, как поток опубликован на...
  13. 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
  14. 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...
  15. 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...
  16. 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...
  17. 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.
  18. 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.
  19. 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)){...
  20. 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...
Top