Search results

  1. Max

    multiple calls from the same number

    Good day. You can make a multiple calls simultaneously from two browser tabs, if your SIP PBX supports outgoing calls without user registration: 1. Open Phone Min example, fill SIP credentials and click Connect. REGISTERED state will be displayed. 2. Enter a callee number and click Call. The...
  2. Max

    Не срабатывает pc.ontrack

    Добрый день. К сожалению, проблема не воспроизводится на тестовом устройстве Samsung SM-G975F/DS (One UI 4.1) в Samsung Internet browser 19.0.6.3 ни на тестовом сервере (последняя релизная сборка WCS 5.2.1530, последняя релизная сборка WebSDK 2.0.227), ни на демо сервере (сборка WCS 5.2.1489...
  3. Max

    Подмена аудиодорожки

    Добрый день. В сборке примеров SFU SDK 2.0.186 добавлены примеры идентификации опубликованных аудио/видео дорожек: Идентификация аудио/видео дорожек. Если опубликовано несколько аудио дорожек, их можно отключать/включать на стороне плеера кнопками.
  4. Max

    SFU Идентификация треков

    Добрый день. В сборке примеров SFU SDK 2.0.186 добавлены примеры идентификации опубликованных аудио/видео дорожек: Идентификация аудио/видео дорожек
  5. Max

    minimum duration time of an RTSP session

    Good day. The settings affects RTMP pulled streams only. For RTSP streams, set the following parameter to keep the stream open in 20 minutes rtsp_activity_timer_timeout=1200000
  6. Max

    Need Player with Tiktok style resolution of video

    Good day. You can set appropriate aspect ratio with constraints while publishing session.createStream({name:"stream1", display: localVideo, constraints:{audio:true, video:{width:360,height:640}}}).publish(); and playback if needed (in this case, transcoding will be enabled on server)...
  7. Max

    Flickering streams since FP update

    Good day. Please clarify the following: 1. What Windows 11 build do you use? 2. What browser do you use? 3. In what example the issue is reproducing: Two Way Streaming, Player, Embed Player etc? If the problem is reproducing in 2 Players example, it may be a known issue 11, in this case we...
  8. Max

    "Unrecognized field \"uri\" (Class com.flashphoner.server.commons.rmi.data.impl.SnapshotParams)

    Good day. /stream/snapshot REST query has no uri parameter, see the example /stream/snapshot and read details here.
  9. Max

    Layout cropped in screen share (while sharing browser tab)

    Good day. Video is not cropped in mixer, it is mixing as is, with width and height received from publisher. But you should aware of aspect ratio. Seems like the entire screen has 16:9 aspect, and browser tab or window has 4:3 aspect. It may be scaled in this case. Also, the explicit height...
  10. Max

    Error: Invalid session state CONNECTED

    Please provide SSH access to the server and RTSP URL to test using this form. We can't help you by just a screenshot. All we can test is other RTSP links playback, and it is working on your server: If you can't provide an access, please do the following: 1. Enable client debug logs on server...
  11. Max

    Error: Invalid session state CONNECTED

    Please try to reproduce the issue in Player example https://your-wcs-instance-ip:8444/client2/examples/demo/streaming/player/player.html. If the problem is not reproducing, modify the Player example code minimally to reproduce it and send the code using this form. If the problem is reproducing...
  12. Max

    Error: Invalid session state CONNECTED

    Good day. A valid session states are: ESTABLISHED, DISCONNECTED, FAILED. See example code here Flashphoner.createSession({urlServer: url}).on(SESSION_STATUS.ESTABLISHED, function(session){ setStatus(session.status()); //session connected, start playback...
  13. Max

    Control when a stop sign

    You should deploy a web server (Apache or nginx) with PHP module for example. Then you should make a PHP script that handles a REST hooks needed on the endpoint http://host/rest-hooks/. And, finally, you should configure WCS to call to this endpoint. Please read a step by step example which...
  14. Max

    Live stream freezing after 800 active users.

    Good day. Please make sure you've applied all the tweaks listed here: Before moving to production and all the tweaks listed in section Preparing for testing of this article. Suppose you're publishing 640x360 1 Mbps stream. In this case, you can serve maximum 800 viewers on 1 Gbps channel (800 *...
  15. Max

    Control when a stop sign

    You can use /StreamStatusEvent REST hook to check if RTSP stream becomes FAILED. Please look at REST hook implementation example that can be used as template.
  16. Max

    Control when a stop sign

    Good day. You can use REST API to check if RTSP stream is running or stopped, and start to capture it again when it stopped.
  17. Max

    Feature request

    Good day. We added support for separate custom Java libraries folder in build 5.2.1512. Please read details here A separate folder for custom mixer Java libraries
  18. Max

    Services in the closed network do not run. what error is it?

    Good day. Please check if WCS listening all the ports needed. Server health check after start uses HTTP port 8081 by default. Use the command netstat -nlp | grep java to list all the listening ports. Also. in the log we see BindException It means server cannot bind media UDP port in range...
  19. Max

    Mixer layout is giving issue with one use case - 2_participants.desktopmix

    We've tested the layout 2_participants.desktopmix mentioned in the first post, and we can't reproduce the issue you describing: Also, the issue is not reproducing for a sample FullScreenDesktop layout Please update WCS to the latest build 5.2.1510. If the issue still persists, provide SSH...
  20. Max

    Mixer layout is giving issue with one use case - 2_participants.desktopmix

    Please see the message above. Make sure you've set two names in -N option for two participants layout.
Top