Search results

  1. Max

    video receive problem

    If you're using a third party TURN server, check its logs. If you're using WCS internal TURN server, reproduce the problem and collect a report at server side using report.sh script. The report also must include traffic dump collected at server side. Send the archive using this form.
  2. Max

    video receive problem

    Good day. Seems like you've not set the TURN credentials (username and password) properly on the client, so TURN server returns 401 Unauthorized. Please check the session parameters on the client: Flashphoner.createSession({ urlServer: url, mediaOptions: { "iceServers": [ {...
  3. Max

    Demo Project not run

    Look at the screenshot from this doc: Preparing examples for building Did you done all the steps from the screenshot?
  4. Max

    Demo Project not run

    Use HTTPS link to clone: git clone -b 1.1 https://github.com/flashphoner/wcs-android-sdk-samples.git
  5. Max

    Demo Project not run

    Good day. Please make sure you've read carefully and done all the steps (especially step 3): Preparing examples for building
  6. Max

    AWS cloudfront with flashphoner

    In this case, please make sure that: 1. You're using HTTPS to connect to the port 8445 https://wcs-host:8445. 2. You're applied an SSL certificate to WCS Another option is to proxy HTTPS port 443 via nginx to HTTP port 8082 http://wcs-host:8082. In this case you don't need to import certificate...
  7. Max

    Dynamic MCU mixer layout

    Yes, background can be changed on the fly POST /rest-api/mixer/set_parameter HTTP/1.1 HOST: 192.168.1.101:8081 Content-type: application/json { "uri": "mixer://mixer1", "background": "/opt/blue.png" } But it cannot rolled back to default yet (ticket WCS-3631), so you have to change...
  8. Max

    On Conference input camera and mic switching and output audio switching

    Good day. How to switch mic: Microphone settings (p. 2) How to switch camera: Camera settings (p. 2) How to select output audio device: Sound device selection See also Media Device example and its source code.
  9. Max

    Enable camera after app starts (CallKit flow)

    Yes, two streams may be published in the same session.
  10. Max

    HLS master playlist

    Good day. HLS ABR is supported only in CDN environment, not on a single node: Actual HLS ABR implementation in build 5.2.585 and newer
  11. Max

    AWS cloudfront with flashphoner

    Hello How do you test CloudFront? How CloudFront is configured? Could you please provide some screenshots where do you see this error net::ERR_CERT_COMMON_NAME_INVALID As you can see from Architecture description https://docs.flashphoner.com/display/WCS52EN/Architecture WCS server is...
  12. Max

    Is there a way to transmit the video by converting the screen 90 degrees when transmitting the video?

    Good day. You can only make a browser to send a camera orientation data session.createStream({ name: streamName, ... cvoExtension: true }).publish(); but you cannot convert the stream published.
  13. Max

    Enable camera after app starts (CallKit flow)

    Seems like there is no camera access in background. So if you want to start audio in background and then video in foreground, the only way to do it looks like the following: 1. In background, publish audio only stream a_stream with constraints audio: true, video: false 2. When application is in...
  14. Max

    Implementing iOS Client without SDK - Failed by DTLS error

    Regarding reverse engineering of iOS SDK 2.6.105 Try the following way 1. Launch default sample, i.e. Two Way Streaming. 2. Use non-secure (because if connection is secure, you will not be able to decrypt https wss traffic) ws connection url, like ws://demo.flashphoner.com:8080 3. Do "Connect"...
  15. Max

    Implementing iOS Client without SDK - Failed by DTLS error

    Arm64 simulator slice is supported since iOS SDK 2.6.105. Please see details here: ARM64 architecture support to build on ARM based Mac Yes, this is possible. See the specification: Raw WebSocket API. In this case, you should set the following parameters in connect message ... "clientVersion"...
  16. Max

    Dynamic MCU mixer layout

    Good day. Since build 5.2.1480, some mixer parameters may be changed by REST API on the fly: Changing mixer parameters on the fly by REST API. See the example for custom mixer layout application: Applying a custom layout to an active mixer on the fly.
  17. Max

    macOS Safari 16.1 Screen Sharing not working

    We received the report. Unfortunately, you've not used report.sh script to collect all the logs, and you've not provided client debug logs where we can see is there media traffic in screen sharing stream or not. Publishing flow itself seems to be correct. We still cannot reproduce the issue in...
  18. Max

    macOS Safari 16.1 Screen Sharing not working

    Unfortunately we can't reproduce the issue in MacOS Safari 16.1 on MacOS Monterrey 12.6.1 using Screen Sharing example on demo server (WCS 5.2.1431, WebSDK 2.0.223) and on test server (WCS 5.2.1478, WebSDK 2.0.225). Please make sure you're testing with latest WCS and WebSDK builds.
  19. Max

    macOS Safari 16.1 Screen Sharing not working

    Good day. Please collect the report at server side as described here including debug logs. Also provide a browser console logs and errors. Please send the resulting archive using this form. We will also try to reproduce the issue in MacOS Safari 16.1, but updating to MacOS Ventura may take a...
  20. Max

    Delay after 3 hour

    Please check the streams_synchronization value on WCS statistics page http://wcs:8081/?action=stat. If this value is constantly growing for the camera, try to set the following parameters in /usr/local/FlashphonerWebCallServer/conf/flashphoner.properties file audio_incoming_buffer_size=100...
Top