hears Active Member Licensed User Longtime User May 25, 2020 #1 here is web side JavaScript codes var oReq = new XMLHttpRequest(); oReq.open("GET", "192.168.1.120", true); oReq.responseType = "blob"; oReq.onload = function(oEvent) { var blob = oReq.response; // ... }; oReq.send(); in b4a how to send ?for example mic PCM stream.
here is web side JavaScript codes var oReq = new XMLHttpRequest(); oReq.open("GET", "192.168.1.120", true); oReq.responseType = "blob"; oReq.onload = function(oEvent) { var blob = oReq.response; // ... }; oReq.send(); in b4a how to send ?for example mic PCM stream.
Erel B4X founder Staff member Licensed User Longtime User May 25, 2020 #2 This JS code creates a http request. You should use HttpJob.Download to create a similar request. Upvote 0
hears Active Member Licensed User Longtime User May 25, 2020 #3 Erel said: This JS code creates a http request. You should use HttpJob.Download to create a similar request. Click to expand... i want post byte stream to web client. it is a living byte stream i read from mic. Last edited: May 25, 2020 Upvote 0
Erel said: This JS code creates a http request. You should use HttpJob.Download to create a similar request. Click to expand... i want post byte stream to web client. it is a living byte stream i read from mic.
Erel B4X founder Staff member Licensed User Longtime User May 25, 2020 #4 hears said: i want post byte stream to web client. it is a living byte stream i read from mic. Click to expand... Too many details are missing here to actually say anything useful. Upvote 0
hears said: i want post byte stream to web client. it is a living byte stream i read from mic. Click to expand... Too many details are missing here to actually say anything useful.