MagicFoundation / Alcinoe

Alcinoe Component Library For Delphi. Full opengl video player, WebRTC delphi wrapper, native ios/android TEdit, Improuved firemonkey controls, Firebase cloud messaging, Android/ios facebook sdk login, Json/Bson Parser, ImageMagick wrapper, MongoDb client And much more
Apache License 2.0
980 stars 215 forks source link

May I ask why ALLiveVideoChat is not working #345

Open davidham2020 opened 1 week ago

davidham2020 commented 1 week ago

Dear Mr Zeus64 Please help. I have successfully compiled both the server-side and client-side of ALLiveVideoChat on delphi 12.2, and have also started the server-side and set the IP address of the client and the server in the same network segment. However, when I opened the client-side on my phone and clicked on the connection, there was no response and it didn't seem to be working. May I ask what is the reason for this? Could you please help me solve it? Thank you very much!

Zeus64 commented 1 week ago

Hi @davidham2020,

First, I am looking for someone who needs WebRTC and can update the current wrapper to the latest version provided by Google, if you are interested just contact me :) Regarding the issue you're experiencing, please note that the wrapper is quite old (2-3 years), and I believe the demo uses STUN/TURN servers from Xirsys. It's possible that those servers are no longer operational. :(

  setlength(LIceServers, 6);
  with LIceServers[0] do begin
    uri := 'stun:eu-turn1.xirsys.com';
    username := '';
    password := '';
  end;
  //-----
  with LIceServers[0] do begin
    uri := 'turn:eu-turn1.xirsys.com:80?transport=udp';
    username := '54c4553a-0427-11e9-bbd8-e8cee7e120e9';
    password := '54c455b2-0427-11e9-909e-55b82d8eaa45';
  end;
  //-----
  with LIceServers[1] do begin
    uri := 'turn:eu-turn1.xirsys.com:3478?transport=udp';
    username := '54c4553a-0427-11e9-bbd8-e8cee7e120e9';
    password := '54c455b2-0427-11e9-909e-55b82d8eaa45';
  end;
  //-----
  with LIceServers[2] do begin
    uri := 'turn:eu-turn1.xirsys.com:80?transport=tcp';
    username := '54c4553a-0427-11e9-bbd8-e8cee7e120e9';
    password := '54c455b2-0427-11e9-909e-55b82d8eaa45';
  end;
  //-----
  with LIceServers[3] do begin
    uri := 'turn:eu-turn1.xirsys.com:3478?transport=tcp';
    username := '54c4553a-0427-11e9-bbd8-e8cee7e120e9';
    password := '54c455b2-0427-11e9-909e-55b82d8eaa45';
  end;
  //-----
  with LIceServers[4] do begin
    uri := 'turns:eu-turn1.xirsys.com:443?transport=tcp';
    username := '54c4553a-0427-11e9-bbd8-e8cee7e120e9';
    password := '54c455b2-0427-11e9-909e-55b82d8eaa45';
  end;
  //-----
  with LIceServers[5] do begin
    uri := 'turns:eu-turn1.xirsys.com:5349?transport=tcp';
    username := '54c4553a-0427-11e9-bbd8-e8cee7e120e9';
    password := '54c455b2-0427-11e9-909e-55b82d8eaa45';
  end;
davidham2020 commented 1 week ago

Dear Zeus64, Thank you very much for your reply! As you said, I am quite interested in WebRTC. If you have a new version, I am willing to participate in testing. Thank you again!