-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WASM: Add support for tracks, streams, and media #500
Comments
So this is working towards a browser based video conferencing system ? All golang ? |
@gedw99 Yes, in WASM the Pion API forms a wrapper around the JavaScript WebRTC API so you can use it in the same (or very similar) way you would on the server. For the media stuff there will probably be some differences in the API between the JavaScript and native implementation. This would indeed allow you to write both the server and the client side of a video conferencing system in Go. |
thanks @backkem - much appreciated. |
Add AddTransceiverFromKind and GetTransceivers. This doesn't support everything, but enough to at least build a recvonly experience. Resolves #500
Add AddTransceiverFromKind and GetTransceivers. This doesn't support everything, but enough to at least build a recvonly experience. Resolves #500
Add AddTransceiverFromKind and GetTransceivers. This doesn't support everything, but enough to at least build a recvonly experience. Resolves #500
Add AddTransceiverFromKind and GetTransceivers. This doesn't support everything, but enough to at least build a recvonly experience. Resolves #500
Add AddTransceiverFromKind and GetTransceivers. This doesn't support everything, but enough to at least build a recvonly experience. Resolves #500
Add AddTransceiverFromKind and GetTransceivers. This doesn't support everything, but enough to at least build a recvonly experience. Resolves #500
I added support for addTransceiver. This is a good start and we can just iterate as we get more demand |
#479 only adds support for
DataChannel
, but eventually we would like to support video and audio functionality by implementing bindings forTrack
and other related objects/methods.The text was updated successfully, but these errors were encountered: