Recent content by serviciosenlared

  1. S

    BUG: check_update

    Hi Max! I found a bug today in "check_update" — it never reports that a new version is available because a line is missing in: function checkUpdate() { local localVersion="" local remoteVersion="" declareUpdate if ! isSiteUp; then informUser ">>> $(getSiteUrl) is not available...
  2. S

    IPv4 & IPv6 at same time

    Hi again! I managed to solve the problem. I had everything enabled over TCP and no STUN. I changed this: ice_tcp_transport=false #ice_tcp_send_buffer_size=2097152 #ice_tcp_receive_buffer_size=2097152 ice_tcp_candidates_enabled=false And I added this: enable_candidate_harvester=true...
  3. S

    IPv4 & IPv6 at same time

    Thank you Max!
  4. S

    IPv4 & IPv6 at same time

    After numerous tests, I haven't been able to make it work correctly with both IPv4 and IPv6, but I've reached some conclusions. If I set `-Djava.net.preferIPv4Stack=` to `false`, then: - I can reach the server via IPv4 and IPv6 using `wscat`. - Both ports 8081 and 8444 work on IPv4 and IPv6...
  5. S

    IPv4 & IPv6 at same time

    Hi again! I'm sorry, this hasn't worked. I set the following in flashphoner.properties: http.address = 0.0.0.0,[::] https.address = 0.0.0.0,[::] wss.address = 0.0.0.0,[::] ws.address = 0.0.0.0,[::] (I also tried setting the public IPv4 and IPv6 addresses, but without success). If I restart...
  6. S

    IPv4 & IPv6 at same time

    Oh! I thought this wasn't necessary, that it was optional. I'll set it up and run some tests. Thank you very much for your help!
  7. S

    IPv4 & IPv6 at same time

    Hi! I followed the steps in your documentation to enable ipv6 and ipv4 on my server. flashphoner.properties: ip_v6=[MY_IPV6] ice_add_ipv6_candidate=true wcs-core.properties -Djava.net.preferIPv4Stack=false Now, the server only responds to IPv6: tcp6 0 0 :::8444 :::* LISTEN 3604675/java If I...
  8. S

    AT&T 4G/5G fails

    Hi! I've tried this for many days with no luck. The users of ATT with 4G/5G connection can't connect to transmit or view WebRTC video. Nobody knows why? Thank you!
  9. S

    AT&T 4G/5G fails

    Hi! Many users report me than they can't connect to live WebRTC using AT&T 4G/5G connections. There are no problem using any other internet provider or WIFI in any part of the globe. We can't test it, because we are not in USA. We've contacted to AT&T by email without luck. Is there somebody...
  10. S

    Flashphoner.init() multiple times

    Hi! Sorry, no luck :-( I detected that one every X times (X = high random times) with Samsung, Chrome browser or WebView, the video runs and publish works. But only 1 every too much times. VP8 codec and any other option in "media devices" of demo page don't solve the problem. Too, the "ICE...
  11. S

    Flashphoner.init() multiple times

    Hi! I've checked this problem is not available in all Samsung devices, only in A series and it's a webkit bug solved in Android reviews but not implemented by Samsung for this serie. I solve it "in part", adding an if in javascript like if device model starts by "SM-A" then use createstream with...
  12. S

    Flashphoner.init() multiple times

    Hi Max! We've did testing in Android 11 devices(*) with "init()" only without params: - Chrome 97.0.4692.98 Both with 'transport: "TCP"' or without it, gets error "FAILED Other: Failed by ICE timeout". Tested in Samsung A22, A21, A42, A52 and Xiaomi 11T. Tested too using webview app, with the...
  13. S

    Flashphoner.init() multiple times

    Thank you MAX. Sorry, I don't explain it good. If I started using: Flashphoner.init(): 3 play ok, 1 error 3 publish ok, 1 error PLAY PC / Mac ok✅ iOS ok✅ Android ok✅ Android 11 some devices(*), error: ICE Timeout❌ PUBLISH PC / Mac ok✅ iOS ok✅ Android ok✅ Android 11 some devices(*), error: ICE...
  14. S

    Flashphoner.init() multiple times

    Hi! Thank you for your reply. But, if I init with: Flashphoner.init({ preferredMediaProviders:["MSE","WebRTC"] }); I'm unable to publish, only able to play. What can I do to offer both options (publish and play) with Init parameters? Thank you!
  15. S

    Flashphoner.init() multiple times

    Hi! Using WebSDK, I use this init in "play live video" function: Flashphoner.init({ preferredMediaProviders:["MSE","WebRTC"] }); Then I've got another function to "stream live video" started by: Flashphoner.init(); Well, if I "stream live video" and then "play live video", the play video...
Top