Search results

  1. G

    generic questions

    thanks for reply. about the data question, it was more about how to store these datas rather than sendind them. thought about saving sessions with memcache but for some reasons not fan of this option. the idea would be for each room to store current state and other infos. of course dont want to...
  2. G

    ssl certificates conf

    ok ive changed the files: uploaded cert.pem and privkey.pem and now its working thank you for your help
  3. G

    ssl certificates conf

    thank you for reply obtained my certificates using certbot available in tools. uploaded chain.pem and privkey.pem. server unavailable after this opération which files should be uploaded ? certbot generates 3 files (chain, privkey and cert)
  4. G

    generic questions

    Hello i have a few questions: performance: how many concurrent live streams can we expect on such machines: 64G ram, 8cores, 1t bandwidth. with wowza i can easily get 1000 concurrents connection, what can we expect with WCS5 ? not related to WCS directly: for conferencing app, i would need to...
  5. G

    ssl certificates conf

    Hello i followed these instructions: https://flashphoner.com/docs/wcs4/101/html/en/wcs-admin-guide/security-ssl_certificates_management-websocket_ssl-ssl_certificate_import.htm but only received .crt files and no pem, so i couldnt complete the ssl configuration then i tryed throught the admin...
  6. G

    SIP examples not working

    see logs, specially this maybe: 11:22:05,541 INFO ergingDatagramSocket - MergingDatagramSocket reader thread for: /198.245.61.176:31322 -> null Failed to receive: java.net.SocketException: Socket closed --------------------> ACK sip:0033979947113@sip.ovh.fr SIP/2.0 from: /SERVER IP:30006...
  7. G

    publish local media error

    amazing, thanks !
  8. G

    publish local media error

    stupid question: how to unpublish a stream...i tryed to publish with audio/video set to false, but looks like its not the way :D
  9. G

    SIP examples not working

    Hello again while all streaming related seem to work properly, i cant get all SIP examples to work. connection to my SIP account is fine apparently, but then i've never been able to place a call. for example when using the phone UI example, call hangup immediatly. here is an error i noticed...
  10. G

    publish local media error

    ok apparently link found on your help was outdated, working now. thank you for your help !
  11. G

    publish local media error

    its not my code, its the code found in conference.js: function publishLocalMedia(room) { room.publish(document.getElementById("localDisplay")).on(STREAM_STATUS.FAILED, function (stream) { console.warn("Local stream failed!"); setStatus("#localStatus", stream.status()); onMediaStopped(room)...
  12. G

    publish local media error

    ok, so it works with this command: room.publish({ display: document.getElementById("myVideo"), record: false, receiveVideo: true, receiveAudio: true }); but not with the orignal command from conference.js ...
  13. G

    publish local media error

    of course i changed it in the conference.js too...here is my js command: room.publish(document.getElementById("myVideo")).on(STREAM_STATUS.FAILED, function (stream) { and of course there is a div called "myVideo"
  14. G

    publish local media error

    Hello i'm new to flashphoner which looks pretty promising, however i'm having some difficulties in implementing my own apps. based on the conference example (web sdk), i'm stuck at the publish local media connection, joining and messages are working ok. but when issuing the publishLocalMedia...
Top