Search results

  1. Max

    Android app freeze on some devices after stop stream

    Да, проблема воспроизвелась у другого клиента, и это помогло отловить deadlock. В сборке 1.1.0.58 проблема исправлена.
  2. Max

    Passing & Parsing URL Parameters when playing with LocalStreamName

    Seems like youtube-dl returns somethin different from downloaded file name, so ffmpeg cannot open the file. Please read this thread about getting downloaded file name.
  3. Max

    Passing & Parsing URL Parameters when playing with LocalStreamName

    As we mentioned above you should modify Embed Player code to pass a parameter needed, for example ... var urlServer = getUrlParam("urlServer") || setURL(); var token = getUrlParam("token") || null; ... function playStream(session) { var options = { name: streamName, display...
  4. Max

    sip problems

    Good day. Please reproduce the problem and collect a report as described here using report.sh script, then send report archive using this form. If the archive size is more than 30 M, place it on Google Drive and send the link using Comment field in from.
  5. Max

    Room API not working for production server

    You should fix the file to play it as VOD from S3 bucket: File format requirements
  6. Max

    Рестрим по RTMP (ошибка битрейта)

    Действительно, если Вы захватываете поток с канваса, констрейнты должны быть выставлены следующим образом: constraints = { audio: false, video: false, customStream: stream }; Посмотрите также исходные тексты примера Canvas Streaming. В этом случае будут...
  7. Max

    Can’t stream to YouTube

    Good day. We fixed the issue with RTMP republishing to Youtube when RTMP outgoing buffer is enabled in build 5.2.1366. Please update and check.
  8. Max

    Рестрим по RTMP (ошибка битрейта)

    Добрый день. Вы публикуете поток с констрейнтами по умолчанию Рекомендуем проставить констрейнты: video: { width: 1280, height: 720, frameRate: 30 minBitrate: 2800, maxBitrate: 4000 } В последних версиях Chrome достаточно выставить минимальный битрейт в констрейнтах...
  9. Max

    recording at another location

    Good day. Use record_dir parameter: Directory for saving recorded files record_dir=/opt/records
  10. Max

    Filters (beautify, AR, etc) on live streaming

    We reproduced the problem in GPUImageDemo Swift example and raised the ticket WCS-3584. Will let you know about progress.
  11. Max

    If the network is disconnected during video transmission

    Please clarify how do you publish a stream. Check the server logs for Failed by video RTP activity message. Is it appear for the stream? Also please clarify how do you test a network issues: closing the media port, breaking the physical connection etc? Then collect a report as described here...
  12. Max

    If the network is disconnected during video transmission

    Good day. Yes, stream publishing may fail if RTP data are not received in 60 seconds by default. In this case, there should be message Failed by video RTP activity in server logs. The timeout is set by the following parameter: rtp_activity_timeout=60 Set this parameter in seconds to reduce the...
  13. Max

    Размещение картинок потоков в микшере при помощи языка разметки - desktop

    Если требуется подгонка под определенный макет, то стандартный шаблон, конечно, не подойдет, т.к. размеры картинок потоков вычисляются, исходя из их количества. Используйте FullScreenDesktopLayout в качестве образца при разработке собственного шаблона.
  14. Max

    Filters (beautify, AR, etc) on live streaming

    switchCamera method should not be called for playStream, it is only working for publishing, not for playback. See also usage example in Two Way Streaming source code.
  15. Max

    Room API not working for production server

    Hello, Please send the MP4 file (or a download link to it if its size more than 30 M) with which the issue occurs using this form. Seems like it has no atoms needed in header. You can also check this file in ffprobe.
  16. Max

    Can't terminate streams using name

    Hello, Ticket WCS-3582 has been submitted for the issue, we'll notify in this thread about an update. Use mediaSessionId as workaround: /rest-api/stream/terminate { mediaSessionId: "stream-mediaSessionId-to-terminate" } You can get mediaSessionId using /stream/find query...
  17. Max

    Filters (beautify, AR, etc) on live streaming

    Please make sure the stream is publishing when you're trying to switch the camera. If yes, please y=try to reproduce the issue in Two Way Streaming Swift example. Then modify example souce code minimally to reproduce the issue and send us the code using this form. We will add this to...
  18. Max

    Размещение картинок потоков в микшере при помощи языка разметки - desktop

    Добрый день, Можно использовать настройку mixer_desktop_align: mixer_desktop_align=LEFT
  19. Max

    Recording space not available on server

    Good day. If you're using REST API /recorder/startup, it will return 500 Internal server error with Not enough disk space to start recording session message if there is not enough disk space. We recommend to set up server system parameters monitoring using Prometheus, Zabbix etc, then check disk...
  20. Max

    Filters (beautify, AR, etc) on live streaming

    GPUImage is used as CocoaPods dependency in GPU Image Swift example. So you can try to set the appropriate version if it is present in CocoaPods.
Top