Search results

  1. Max

    How to do screen sharing in Conference (Room) - Android

    Good day. Please read Video Chat and Screen Sharing example description and its code on GitHub. Please note that all the modern browsers now can capture screen without extension.
  2. Max

    RTSP links stuck after new seconds

    We checked your stream and server. Unfortunately, there is no any movement in the stream, just black screen with one white point both in VLC and in Media Devices example The stream does not fail during a couple of minutes, packets received count is growing, lost packets count is zero, stream...
  3. Max

    SIP connectivity with opensips

    Please use the following settings: port_from=30000 port_to=30002 In this case, port 30001 will be used for SIP signaling, and even ports (30000 and 30002) will not be used.
  4. Max

    Cannot connet to my stream

    You can set up all of these using ffmpeg RTMP publishing Please show ffmpeg command you use to publish a stream to WCS For example, the following command ffmpeg -stream_loop -1 -re -i BigBuckBunny.mp4 -preset ultrafast -acodec aac -ar 48000 -vcodec h264 -strict -2 -g 48 -f flv...
  5. Max

    WCS v.0.5.28.2753-5.2.859 issue

    Yes. If you want to pass callee number from client rather to replace it on backend, you should comment this line in PHP script //$incoming_data['callee'] = "10002"; In this case, callee field will be passed unchanged to SIP proxy. But this is less secure than changing callee on backend. If you...
  6. Max

    Android sdk - How to support different OS version devices

    Good day. Android SDK 1.1 has a newer WebRTC library version integrated which supports screen capturing. But this library requires API 26 and higher. So you cannot use screen sharing feature in earlier Android versions. You cannot support different API levels in a single APK, but you can use...
  7. Max

    How can i restream to youtube and facebook.

    Good day. We already explained how to republish a stream to Facebook in this post Please use the same flow to republish to Youtube, only RTMP URL and stream key are different. See Youtube example here.
  8. Max

    How complete facebook live setup in aws ec2 with web call server.

    Good day. To set up WCS for stream republishing to Facebook, you should add the following line: rtmp_transponder_stream_name_prefix= to /usr/local/FlashphonerWebCallServer/conf/flashphoner.properties file and restart WCS. Please see details here (step 3). You can also add the following...
  9. Max

    IFrame embedding, possibility to only stream audio?

    Good day. You can play audio only using the following constraints while creating a stream to play function playStream(session) { var options = { name: streamName, display: remoteVideo, flashShowFullScreenButton: true, constraints: { video...
  10. Max

    iphone video freeze

    PRELOADER_URL is the URI to get preloader video (black screen with silence). The preloader used in WebSDK is in /usr/local/FlashphonerWebCallServer/client2/examples/demo/dependencies/media/preloader.mp4 file. All Web SDK examples refer to this preloader by relative path var PRELOADER_URL =...
  11. Max

    Cloned server stopped working

    Please see the public key and support IP address to whitelist here
  12. Max

    RTSP links stuck after new seconds

    Please provide RTSP link and SSH using this private form.
  13. Max

    flashphoner.js file missing in Example Code.

    flashphoner.js is a result of Web SDK build (compilation) Please check https://docs.flashphoner.com/display/WEBSDK2EN/Building+JavaScript+API+from+sources Ready to use flashphoner.js can be found in builds https://docs.flashphoner.com/display/WEBSDK2EN/Web+SDK+release+notes
  14. Max

    Cloned server stopped working

    Hello You can check license.log and flashphoner.log to except license issues. Please attach these two files as a report zip. We can also check over SSH if you provide. https://demo.flashphoner.com/ Our demo server recently updated to 5.2.871...
  15. Max

    Cannot connet to my stream

    Same issue - cannot connect - or a different behavior? Please verify that the address is reachable from the server with WCS telnet <IP> <port> Could you please clarify what are the requirements?
  16. Max

    flashphoner server - Not able to connect

    That is 5.2.868 build issue. It has been fixed. Please update to 5.2.871.
  17. Max

    Cannot connet to my stream

    Please try with this setting in flashphoner.properties (restart the WCS to apply) Connection to stream from cvlc was established with this setting on WCS. Also, please consider using ffmpeg for publishing to WCS.
  18. Max

    SIP connectivity with opensips

    This is special contact ID and it can be disabled with the setting: sip_add_contact_id = false
  19. Max

    flashphoner server - Not able to connect

    Hello This is the first checks you can do to validate server launch: 1. Server is up and running ps aux | grep java 2. Port 8444 is listening netstat -nlp | grep java | grep 8444 3. Port 8444 is open on firewall and reachable telnet 164.52.205.246 Additionally Make sure port TCP 8443 is...
  20. Max

    Cannot connet to my stream

    Hello mpga is not supported audio codec Try mpeg AAC Audio (mp4a) as known as mpeg4-generic This is working VLC sample
Top