GithubHelp home page GithubHelp logo

Comments (3)

Momenul-TCS avatar Momenul-TCS commented on June 27, 2024 2

Hello @remymatheus I am facing the same error in the server. Did you manage to solve that?

from hexcord-mediaserver.

remymatheus avatar remymatheus commented on June 27, 2024

I think it may be a problem of my HTML client, could you help me with an example of HTML client, thank you very much for your help.

navigator.mediaDevices
	.getUserMedia({
		audio: true,
		video: true,
	})
	.then((cameraStream) => {
		const pc = new RTCPeerConnection({
			sdpSemantics: 'unified-plan',
		});

		cameraStream.getTracks().forEach(track => pc.addTrack(track, cameraStream));

		pc.createOffer()
			.then((offer) => pc.setLocalDescription(offer))
			.then(() =>
				fetch('http://xxx.xxx.xxx.xxx:8090/webrtc/offer', {
					method: 'POST',
					headers: { 'Content-Type': 'application/json' },
					body: JSON.stringify({
						"ingestionAddress":"xxxxx",
						"streamKey": "xxxxxxxxx",
						"offer": JSON.stringify(pc.localDescription)
					})
				})
			)
			.then((res) => {
				if (!res.ok) throw new Error(`${res.status} ${res.statusText}`);
				return res.json();
			})
			.then((answer) => pc.setRemoteDescription(answer))
			.catch((err) => console.error(err));

from hexcord-mediaserver.

grantfayvor avatar grantfayvor commented on June 27, 2024

Hey @remymatheus, try creating a peer connection with the google stun server like

new RTCPeerConnection({ iceServers: [ { urls: 'stun:stun.l.google.com:19302' } ] });

Also, if both clients (Go and JavaScript) are on separate machines, you would want to either trickle ice or wait until ice gathering is complete before sending the remoteDescription

from hexcord-mediaserver.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.