Search results

  1. Max

    issue with switch camera flashphoner in react

    Does it work in Media Devices example? If yes, please modify the source code minimally to reproduce the problem and send using this form. Please also note that this code will not work in React Native environment, it may be used in browser only.
  2. Max

    issue with switch camera flashphoner in react

    The showStat is just a helper function to display a statistics data. Please use Stream.getStats() method to get a statistics object (see sample on GitHub) publishStream.getStats(function (stats) { if (stats && stats.outboundStream) { if...
  3. Max

    rest-api issue

    Please use REST API to get stream metrics: Receiving common stream information Use XMLHttpRequest to call REST API from JS code: search with Google
  4. Max

    android SDK not build

    If you open aar file using zip extensions, you will be able to see dependencies including gson-2.7.jar Try to remove this file from aar archive or configure your build excluding this jar file.
  5. Max

    android SDK not build

    Hello export.sh is a Linux shell script it does not work properly on Windows To build a sample on Windows 1. Open a sample folder as a project in the Android Studio 2. Add aar file as a dependency. wcs-android-sdk-1.1.0.61.aar 3. Build the project with the dependency.
  6. Max

    android SDK not build

    Download: TAR.GZ https://docs.flashphoner.com/static/ANDROIDSDK11/Android_SDK_1.1_release_notes/#android_sdk_11_release_notes AAR example (latest 61 version for now) https://flashphoner.com/downloads/builds/flashphoner_client/wcs-android-sdk/1.1/wcs-android-sdk-1.1.0.61.aar
  7. Max

    android SDK not build

    Hello Did you do the Step 2? https://docs.flashphoner.com/display/ANDROIDSDK11EN/Overview#Overview-Preparingexamplesforbuilding wget http://flashphoner.com/downloads/builds/flashphoner_client/wcs-android-sdk/1.1/wcs-android-sdk-1.1.0.x.aar cp wcs-android-sdk-1.1.0.x.aar export
  8. Max

    rest-api issue

    Hello This means you don't have streams on the server. Try to publish a stream first. Make sure your stream is being published. Then try again /find_all. Example of a published stream https://demo.flashphoner.com/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.html
  9. Max

    Encrypted SSL

    Hello https://docs.flashphoner.com/display/WCS5EN/Websocket+SSL Default: password
  10. Max

    AT&T 4G/5G fails

    Hello Try to add this setting: ice_tcp_transport=true in flashphoner.properties This will switch default transport from UDP to TCP.
  11. Max

    Snapshot through Rest API

    It seems you have got reports with TCP enabled. ice_tcp_transport = true in flashphoner.properties We don't see any issues with TCP enabled. Could you comment out this setting and prepare report for UDP configuration.
  12. Max

    issue with switch camera flashphoner in react

    Hello First of all, test Media Devices sample with your server. https://demo.flashphoner.com/client2/examples/demo/streaming/media_devices_manager/media_device_manager.html Make sure publishing and playback resolutions are equal. If resolutions are not equal, try to change Content Hint to...
  13. Max

    android SDK not build

    Hello Please follow the documentation Android SDK 1.1 and examples https://docs.flashphoner.com/display/ANDROIDSDK11EN/Overview
  14. Max

    rest-api issue

    Hello This is REST API docs https://docs.flashphoner.com/display/WCS52EN/REST+API REST API Examples https://docs.flashphoner.com/display/WCS52EN/Examples Recorded video file is a static mp4 or mkv. There is no REST API to check file system. You can connect to server over SSH and download...
  15. Max

    Snapshot through Rest API

    We added reports to the ticket.
  16. Max

    RTCVideoTrack removeRenderer array crash

    We tested in Media Devices Swift and Two Way Streaming Swift: - click Connect - Publish - Disconnect before PUBLISHING status: no crash - click Connect - Publish - Stop - Disconnect: no crash too So we need a code to reproduce.
  17. Max

    issue with switch camera flashphoner in react

    A stream is recorded with a real publishing resolution. Not with resolution set by constraints, because the real resolution may be lower if channel bandwidth is not enough. You can check the publishing resolution and other stream metrics by REST API: Receiving common stream information
  18. Max

    RTCVideoTrack removeRenderer array crash

    Please also note we does not change WebRTC package in this build (only version is bumped) You should update FPWCSApi2 and FPWCSApi2Swift packages to 2.6.120 too because those packages contains actual changes (checking if renderer is created before deleting it).
  19. Max

    RTCVideoTrack removeRenderer array crash

    We can't reproduce this in Media Devices Swift or Two Way Streaming Swift examples. Please modify any of the examples to stable reproduce the issue and send us the code using the form.
  20. Max

    Snapshot through Rest API

    You don't need to close the ports if HLS server disabled. WCS will not listen the ports in this case.
Top