Search results

  1. Max

    Обновление до 5.2.926

    Добрый день. По какой именно инструкции действовали? По этой перед запуском install.sh необходимо остановить сервер и убедиться, что он остановлен: pgrep java По этой, при использовании команды cd /usr/local/FlashphonerWebCallServer/bin sudo webcallserver update будет выдан запрос на...
  2. Max

    Flashphoner as server for internal calls

    We don't have native clients for raspberry. Perhaps you can run headless chrome on raspberry device and capture cam or play a stream from WCS server. But we never tested headless chrome on raspberry. Though headless chrome works fine on Linux. We use it for load tests...
  3. Max

    what is the user and password default

    You can submit ssh access to server using this private form. Then we will be able to check.
  4. Max

    what is the user and password default

    For Amazon Marketplace image password is {instance-id} ID of this Amazon instance. Or admin admin for other cases.
  5. Max

    MCU микшер

    Добрый день. Таймаут для завершения микшера без потоков задается настройкой mixer_idle_timeout. По умолчанию таймаут установлен в 60 секунд. Вы можете его уменьшить до 5 секунд, например mixer_idle_timeout=5000
  6. Max

    RTSP to Webrtc to stream, but can i send text to the broswer at the same time? Thanks

    You can use server-side decoded frames interceptor custom class. In this case, you can add any picture or text to every stream frame, or even call some external software (face recognotion etc). Please note that this feature requires transcoding to decode and then encode frames modified.
  7. Max

    Webrtc stream won't stop publishing

    In this case, you should modify only publishing part of code.
  8. Max

    При подключении наушников к устройству, звук идет через динамики устройства

    Добрый день. Установка атрибута AudioAttributes.USAGE_VOICE_COMMUNICATION для плеера решает проблему: MediaPlayer music = MediaPlayer.create(getBaseContext(), R.raw.sound1); music.setAudioAttributes( new AudioAttributes.Builder()...
  9. Max

    Webrtc stream won't stop publishing

    Good day. Please check if the issue is reproducing in Two Way Streaming example shipped with WCS https://wcs:8444/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.html If not, please modify the example code minimally to reproduce the issue, and send using this form, we will...
  10. Max

    Добавление стримов в микшер

    Похоже, лэйаут не применился при создании микшера. В предложенном коде поток, содержащий в имени user_for, будет всегда слева, user_against - справа. От потока с любым другим именем картинки в микшере не будет, только аудио. Если лэйаут применяется, в серверном логе при создании микшера должна...
  11. Max

    No video while playing stream on Android SDK 1.1

    Good day. Please note that Android SDK 1.1 is intended to use on Android 8 and newer while Android SDK 1.0 may be used on Android 5-7. Please make sure you're running an application on suitable device. Also check if the issue is reproducing in Android Streamin min or Player example built from...
  12. Max

    RTSP to Webrtc to stream, but can i send text to the broswer at the same time? Thanks

    No, this is not possible yet. We plan to add custom data sending from publisher to subscribers for WebRTC translations (ticket WCS-3105), but for RTSP stream captured it will still require a REST API query to the server. And it will never be synchronized with a certain video frame.
  13. Max

    Сколько необходимо платить за лицензию при настройке cdn?

    >Правильно понимаю, что даже сервера, объединенные в CDN, оплачиваются так же каждый отдельно? Да, верно. Сервер в составе CDN остается отдельным сервером, для которого работает стандартная лицензионная модель.
  14. Max

    Сколько необходимо платить за лицензию при настройке cdn?

    >Подскажите, правильно ли понимаем, что за этот период придется оплатить по 75$ за каждый из них? Если была использована триальная лицензия, то бесплатно. Если была использована Subscription лицензия, то $75 за каждый. Документация по биллингу
  15. Max

    RTSP to Webrtc to stream, but can i send text to the broswer at the same time? Thanks

    Please read the following thread. The case is to switch to another stream by receiving a message from server. In your case, you will draw something on canvas when message is received.
  16. Max

    RTSP to Webrtc to stream, but can i send text to the broswer at the same time? Thanks

    Good day. You can add watermark to the stream on server: 1. Capture RTSP stream 2. Create a transcoder using REST API: POST /rest-api/transcoder2/startup HTTP/1.1 HOST: wcs:8081 content-type: application/json { "uri": "transcoder2://tcode2", "localStreamName"...
  17. Max

    HLS формат с разными разрешениями

    Это обязательный параметр, который идентифицирует данный транскодер на сервере. Имя после префикса transcoder:// должно быть уникальным, в противном случае запрос на создание вернет 409 Conflict, а любой другой запрос вернет 404 Not found
  18. Max

    RTSP Video Stream doesnt work

    Hello >How often does the license get checked? Every 15 minutes. The behavior is not declared and may be changed in future releases. >If we start with a monthly subscription and decide to buy a Standalone License later, would it be possible to easy change the license? Just deactivate first...
  19. Max

    RTSP Video Stream doesnt work

    We fixed codec negotiation issue in build 5.2.924. Please update and check. If the stream still fails to play, please collect a report as described here including traffic dump collected at WCS side as described in this post and cleint debug logs. You should wait at least a minute before stopping...
  20. Max

    переключение качества на клиенте

    30 кбит/с - низкое, 64 кбит/с - среднее, 128 кбит/с высокое, например session.createStream({ name: streamName, display: localVideo, constraints: { video: false, audio: { bitrate: 30000 } } }).publish();
Top