Search results

  1. Max

    Тихий звук с android в конференции

    Добрый день. Попробуйте в Chrome на Android поднять усиление микрофона при помощи функции setMicrophoneGain(), как описано здесь $("#micGainControl").slider({ range: "min", min: 0, max: 100, value: currentGainValue, step: 10, animate: true, slide: function (event...
  2. Max

    Transcoding running on Edge server

    Good day. We cannot reproduce the issue in our test environment with iOS 13.4 (both in Safari and Chrome browsers). Please collect a report from Transcoder and Edge as described here including client debug logs and send to support@flashphoner.com. Also please provide SSH access to your CDN, we...
  3. Max

    Player start muted

    Good day. Due to autoplay policy in a most of modern browsers, you should emulate some user action to automatically play video with sound. For e[ample, click on volume slider: function playStream(session) { ... stream = session.createStream(options).on(STREAM_STATUS.PENDING...
  4. Max

    Safari - Error to play media

    Good day. Please clarify the following: 1. What WCS and WebSDK version do you use? 2. What Safari version do you use? 3. What media providers do you enable for test? 4. Is Adobe Flash Player is installed, if you choose "Flash" only?
  5. Max

    How to add - Mute Audio and Video to simple streamer example.

    Good day. You can add stream.muteVideo() and stream.muteAudio() functions on some button press as like as in Media Devices example function muteAudio() { if (publishStream) { publishStream.muteAudio(); } } function unmuteAudio() { if (publishStream) {...
  6. Max

    playHLS custom backend server enpoint not working

    Good day. You should configure publishStream to fail on error as described here. By default, it only writes to log on 403 Forbidden.
  7. Max

    Unable to stream video from Pelco VideoXpert VMS

    Good day. We work on it. To speed up, access to the problem stream would be helpful.
  8. Max

    Автоматическое переподключение в конференции

    Если участник отвалился от конференции, он должен получить статус SESSION_STATUS.DISCONNECTED. После получения этого статуса, можно сделать новую попытку коннекта https://demo.flashphoner.com/client2/examples/demo/streaming/conference/conference.js function createConnection(url, username) {...
  9. Max

    Публикация FAILED в Opera

    Судя по картинке, UDP трафик заблокирован. Попробуйте через TCP. https://demo.flashphoner.com/client2/examples/demo/streaming/media_devices_manager/media_device_manager.html Если через TCP не получится, попробуйте через TURN...
  10. Max

    Playing Adverts into the stream

    Yes, you wouldn't have issue sending signaling messages from server to clients.
  11. Max

    Gpu transcoding

    Добрый день. В данный момент транскодинг на GPU тестируется, но еще не выпущен в пользу более актуальных задач. Мы сообщим, когда будет выпущена сборка с поддержкой GPU.
  12. Max

    playHLS custom backend server enpoint not working

    Yes. You can send custom keys from client using /publishStream REST hook and return 200 OK if publishing is allowed or 403 Forbidden if not.
  13. Max

    ONE TO MANY LIVE STREAMING

    Good day. Yes, you can publish live streams and play them from server, publishers and subscribers amount depend on servers capacity. Mobile browsers are supported. Please describe the problem in details: 1. What WCS version do you use? 2. How do you publish the stream to play (what example...
  14. Max

    Transcoding running on Edge server

    Please check statistics page http://wcs:8081/?action=stat both for transcoder and edge server. Pay attention to stream transcoding statistics section -----Transcoding info----- transcoding_video_decoding_resolutions=1920x1080/1 transcoding_video_decoding_average_time=1920x1080/21.0...
  15. Max

    Calls interrupted in iOS when receiving incoming in-app notifications or when the screen saver is on

    Do you set this Xcode option? Also, please read this article where some background tweaks are described.
  16. Max

    Calls interrupted in iOS when receiving incoming in-app notifications or when the screen saver is on

    Good day. This seems like the same problem as playback in background: then Safari browser goes to background it stops sending and playing video, but proceeds to send audio. So, client does not hear other call side, but other side still hears the client. We raised the ticket WCS-2681 to...
  17. Max

    playHLS custom backend server enpoint not working

    Good day. For HLS playback authentication, only defaultApp can be used, so you should update defaultApp endpoint: update app -l "http://your_backend_endpoint/" defaultApp
  18. Max

    Transcoding running on Edge server

    To transcode stream by profile, you should add profile name to stream name as a suffix when requesting stream from Edge to play, for example 101wide_480p-wsplayer if stream name is 101wide_480p and profile name is -wsplayer
  19. Max

    Playing Adverts into the stream

    Yes No, RoomApi backend cannot be replaced as we discussed earlier. The task is to exclude RoomApi. This can easily be implemented as described in the post above, p 2-3: 1. User connects to server by sreating a session. To handle the events sent to user, SESSION_STATUS.APP_DATA handler should...
  20. Max

    Публикация FAILED в Opera

    Добрый день. Это известная проблема (п. 6): большинство браузеров, основанных на Chromium, поддерживают публикацию и воспроизведение H264 только в том случае, если на клиенте установлены соответствующие библиотеки кодеков. Для таких браузеров необходимо исключать H264 при публикации и...
Top