Search results

  1. Max

    issue with switch camera flashphoner in react

    The selector is in jQuery syntax. If you're not using jQuery here, use document.querySelector() or something like this method to get an HTML element.
  2. Max

    issue with switch camera flashphoner in react

    The screenshot shows the websocket session is established correctly. If the publishing fails you should check the error information: Error handling code example.
  3. Max

    Unable to installed flashphoner on my rackbankcloud server

    If you deploy AWS instance from scratch, you must install JDK. Please refer to this doc: Requirements and prerequisites If you prefer to use AWS Marketplace image, it already includes all the prerequisites needed and WCS installed: WCS automatic deployment from Amazon AWS Marketplace. But it is...
  4. Max

    issue with switch camera flashphoner in react

    We don't see a message "Create new session with url" on you console screenshot. Please check url value to be a valid secure websocket URL.
  5. Max

    issue with switch camera flashphoner in react

    You have not provided websocket WCS URL in urlServer calling Flashphoner.createSession() method (see code example) Flashphoner.createSession({urlServer: url}).on(SESSION_STATUS.ESTABLISHED, function (session) { ... }); Please read the example description with code analyzing...
  6. Max

    Unable to installed flashphoner on my rackbankcloud server

    Default login password: For non Amazon AWS servers admin admin demo demo For AWS server admin {instance ID} demo demo Trial License https://flashphoner.com/download#trial
  7. Max

    issue with switch camera flashphoner in react

    If the example works, please check your source code. Note that this object is pointing not to application object in event handler function.
  8. Max

    Unable to installed flashphoner on my rackbankcloud server

    Please run the command sudo /usr/local/FlashphonerWebCallServer/bin/webcallserver set-permissions then restart WCS: Folder permissions setting when starting from flashphoner user Please also refer to the doc about starting and stopping WCS: Starting and stopping
  9. Max

    Unable to installed flashphoner on my rackbankcloud server

    Seems like WCS archive is not fully downloaded. Please download the latest build here: 5.2.1847 wget https://flashphoner.com/downloads/builds/WCS/5.2/FlashphonerWebCallServer-5.2.1847.tar.gz It should be installed correctly
  10. Max

    issue with switch camera flashphoner in react

    Does the Stream Recording example work for you?
  11. Max

    Unable to installed flashphoner on my rackbankcloud server

    Make sure you have install.sh file You can also send SSH access details via this form We will check.
  12. Max

    issue with switch camera flashphoner in react

    Please check the stream object in the scope. May be you override it by some other type. You can always test Stream Recording example (GitHub) in browser, it uses this method.
  13. Max

    RTCVideoTrack removeRenderer array crash

    We usually do not provide ETA for forum tickets. Raised the ticket priority, hope this will be fixed to New Year Eve.
  14. Max

    issue with switch camera flashphoner in react

    On your screenshot, this keyword is highlighted Seems like this is undefined here. Please use a correct object here.
  15. Max

    Snapshot through Rest API

    Hello Please upload latest huge logs if you didn't clean all. /usr/local/FlashphonerWebCallServer/logs/server_logs/flashphoner.log This log is rotated hourly. We would check few hours where logs are too big. You can send download link via Report Form What was your previous version? Before...
  16. Max

    Snapshot through Rest API

    No. You have to change just AWS rules. The AWS rules must match current settings. For example. If current settings are media_port_from =31001 media_port_to =32000 AWS rules should be: TCP 31001-32000 UDP 31001-32000
  17. Max

    Snapshot through Rest API

    Regarding to TCP. It fails because TCP ports are closed on Amazon AWS security. 1. Check AWS instance security group settings. 2. Add TCP ports range: TCP 31000 - 33000 3. Make sure that media port range is matched to flashphoner.properties settings: media_port_from = 31000 media_port_to =33000
  18. Max

    SSL

    Regarding flashphoner.properties config All the settings and it's defaults https://docs.flashphoner.com/display/WCS52EN/Settings+file+flashphoner.properties Therefore if you don't see record_streams=false line this means it has default value
  19. Max

    SSL

    Hello Full Docs https://docs.flashphoner.com/display/WCS52EN Recording Docs https://docs.flashphoner.com/display/WCS52EN/Stream+recording Recording Examples https://flashphoner.com/embedding-webrtc-stream-recording-into-a-web-page-2/ https://docs.flashphoner.com/display/WEBSDK2EN/Stream+Recording
  20. Max

    Snapshot through Rest API

    It seems you have a high packet lost rate. Try to switch to tcp: ice_tcp_transport = true https://docs.flashphoner.com/display/WCS52EN/Settings+file+flashphoner.properties
Top