Search results

  1. Max

    Как добавить кнопки управления плеером?

    Пример для Web SDK: Embed Player.
  2. Max

    Video submission issues with Safari 12.1

    Good day. We cannot reproduce the issue using Safari 12.1.2 on Mac OS 10.14.6 in our test environment. So, our engineers try to reproduce the problem using logs and dumps you've provided. Please also provide us SSH access to the server and TeamViewer access to Mac you've testing on, if possible.
  3. Max

    Web stream 5 seconds delay on Chrome running on android

    Good day. Please collect report as described here then get logs archive using script for two cases: 1) RTSP playback using Chrome browser on PC 2) RTSP playback using Chrome browser on Android phone 3) RTSP playback using Samsung browser on Android phone Make sure all the tests be performed...
  4. Max

    Works on demo but not on my web server page

    You should also open TCP ports 8081 and 8444 for web examples (and Embed Player) to work. The full firewalld setup to open looks like this: firewall-cmd --permanent --zone=public --add-port=8888/tcp firewall-cmd --permanent --zone=public --add-port=8443/tcp firewall-cmd --permanent...
  5. Max

    Works on demo but not on my web server page

    Good day. Please collect a report as decribed here (you can collect logs using script), including browser version and browser console messages, and send to support@flashphoner.com, we will check.
  6. Max

    Recording Issues

    Template {duration} for stream record name has been added in WCS v. 5.2.346. E.g., stream_record_policy_template={streamName}-{duration} It is applicable for MP4 recordings only. Duration value is taken from mvhd (movie header) atom of recording metadata.
  7. Max

    rtmps re-publishing

    Добрый день. Пожалуйста, обновитесь до последней сборки с этой страницы, либо, если речь об инстансе в Amazon, до актуальной версии из Amazon AWS Marketplace. Поддержка RTMPS была добавлена в сборке 5.2.109.
  8. Max

    Room API text ??? symptom + more questions

    Good day. 1. It is a known issue with national symbols in REST hook queries and RoomApi (which based on REST hooks). You can use encodeURIComponent() to encode text message before sending and decodeURIComponent() to decode it when receiving 2. You can test server perfomance using WebRTC stream...
  9. Max

    Android SD: управление звуком

    Добрый день. В сборке Android SDK 1.1 1.1.0.12 проблема исправлена, при установке setVolume(0) звук отключается. В пример Media Devices добавлено управление звуком при помощи аппаратных кнопок: @Override public boolean onKeyDown(int keyCode, KeyEvent event) { int currentVolume =...
  10. Max

    Получить состояние потока

    Добрый день. Если Вам необходимо проверить на клиенте, опубликован ли поток, который Вы собираетесь проигрывать, это можно сделать при помощи функции WebSDK Stream.available(). Функция возвращает Promise, который разрешается, если поток с указанным именем опубликован на сервере. Пример...
  11. Max

    Низкое качество трансляции и демонстрации

    Добрый день. Для повышения качества WebRTC-трансляции можно использовать управление битрейтом, с учетом пропускной способности канала между публикующей стороной и сервером. В свою очередь, пропускную способность канала можно протестировать при помощи iperf. Также может помочь использование...
  12. Max

    Android SDK 1.1 or 1.0 is not supported to change the VideoCapturer

    Good day. We have implemented screen capture in Android SDK 1.1 build 1.1.0.11. To demonstrate the feature, Android Screen sharing example was added. Please see the description here and example code on GitHub.
  13. Max

    Video submission issues with Safari 12.1

    We have checked your logs and raised internal ticket WCS-2258 to investigate this. We let you know on results.
  14. Max

    Video submission issues with Safari 12.1

    Good day. Please collect a report with periodic_fir_request=true option enabled and send to support@flashphoner.com
  15. Max

    Проблема с автопродлением ключа

    Пришлите, пожалуйста, для этого случая лог WCS_HOME/logs/server_logs/flashphoner.log на support@flashphoner.com.
  16. Max

    Проблема с автопродлением ключа

    Добрый день, Есть известная проблема с отображением даты в админке. Другие способы проверки лицензии: 1) лог WCS_HOME/logs/license.log - должны появляться сообщения ping success 00:07:06,788 INFO Subscription - Subscription Thread processSuccessPingResult result...
  17. Max

    Recording Issues

    Please send the recording file itself.
  18. Max

    in android Studio WebView, Camera is not open

    Hello, Please create a new thread with your question and describe in English what is the issue you encountered.
  19. Max

    Video submission issues with Safari 12.1

    Good day. We've checked your report. It seems like Safari browser sends only two keyframes at the beginning of stream publishing. Please set the following parameter in flashphoner.properties periodic_fir_request=true this should help to make browser send keyframes more regularly.
  20. Max

    Live Streaming Through Web

    Good day. Using WebSDK, you can enumerate the media devices then select camera before stream publishing: Flashphoner.getMediaDevices(null, true).then(function (list) { ... list.video.forEach(function (device) { ... }); }).catch(function (error) {...
Top