All Projects → pion → Webrtc

pion / Webrtc

Licence: mit
Pure Go implementation of the WebRTC API

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Webrtc

Mediadevices
Go implementation of the MediaDevices API.
Stars: ✭ 197 (-97.65%)
Mutual labels:  rtp, voip, webrtc, p2p, streaming
Rtp
A Go implementation of RTP
Stars: ✭ 120 (-98.57%)
Mutual labels:  audio, rtp, webrtc, streaming
Libcrtc
WebRTC C++ library built on top of chromium webrtc.
Stars: ✭ 89 (-98.94%)
Mutual labels:  audio, rtp, webrtc, p2p
Webrtc
A pure Rust implementation of WebRTC API
Stars: ✭ 922 (-89.02%)
Mutual labels:  rtp, voip, webrtc
Instacam
Instant canvas video
Stars: ✭ 106 (-98.74%)
Mutual labels:  webcam, audio, webrtc
srtp
A Go implementation of SRTP
Stars: ✭ 83 (-99.01%)
Mutual labels:  rtp, srtp, pion
Web Audio Javascript Webassembly Sdk Interactive Audio
🌐 Superpowered Web Audio JavaScript and WebAssembly SDK for modern web browsers. Allows developers to implement low-latency interactive audio features into web sites and web apps with a friendly Javascript API. https://superpowered.com
Stars: ✭ 68 (-99.19%)
Mutual labels:  audio, webassembly, wasm
Instant.io
🚀 Streaming file transfer over WebTorrent (torrents on the web)
Stars: ✭ 2,954 (-64.83%)
Mutual labels:  webrtc, p2p, streaming
Diffy
🎞️💓🍿 Love streaming - It's always best to watch a movie together ! 🤗
Stars: ✭ 37 (-99.56%)
Mutual labels:  streaming, webrtc, p2p
Gb28181.solution
Linux/Win/Docker/kubernetes/Chart/Kustomize/GB28181/SIP/RTP/SDP/WebRTC/作为上下级域/平台级联互联
Stars: ✭ 323 (-96.15%)
Mutual labels:  rtp, webrtc, streaming
Pearplayer.js
支持WebRTC的多源多协议混合P2P-CDN的流媒体播放器
Stars: ✭ 512 (-93.9%)
Mutual labels:  webrtc, p2p, streaming
Webrtc Cli
WebRTC command-line peer.
Stars: ✭ 135 (-98.39%)
Mutual labels:  audio, webrtc, streaming
Sipsorcery
A WebRTC, SIP and VoIP library for C# and .NET Core. Designed for real-time communications apps.
Stars: ✭ 449 (-94.65%)
Mutual labels:  rtp, voip, webrtc
Rtsp Simple Server
ready-to-use RTSP / RTMP server and proxy that allows to read, publish and proxy video and audio streams
Stars: ✭ 882 (-89.5%)
Mutual labels:  audio, rtp, streaming
WireBug
WireBug is a toolset for Voice-over-IP penetration testing
Stars: ✭ 142 (-98.31%)
Mutual labels:  voip, rtp, srtp
rtc-ssh
WebRTC wrapper for SSH connect
Stars: ✭ 95 (-98.87%)
Mutual labels:  webrtc, p2p, pion-webrtc
Stun
A Go implementation of STUN
Stars: ✭ 141 (-98.32%)
Mutual labels:  voip, webrtc, streaming
Webtorrent
⚡️ Streaming torrent client for the web
Stars: ✭ 25,554 (+204.25%)
Mutual labels:  webrtc, p2p, streaming
Qtox
qTox is a chat, voice, video, and file transfer IM client using the encrypted peer-to-peer Tox protocol.
Stars: ✭ 3,843 (-54.24%)
Mutual labels:  audio, voip, p2p
Libjitsi
Advanced Java media library for secure real-time audio/video communication.
Stars: ✭ 536 (-93.62%)
Mutual labels:  audio, rtp, webrtc

Pion WebRTC
Pion WebRTC

A pure Go implementation of the WebRTC API

Pion webrtc Sourcegraph Widget Slack Widget Twitter Widget
Build Status PkgGoDev Coverage Status Go Report Card Codacy Badge License: MIT


Usage

Go Modules are mandatory for using Pion WebRTC. So make sure you set export GO111MODULE=on, and explicitly specify /v2 or /v3 when importing.

example applications contains code samples of common things people build with Pion WebRTC.

example-webrtc-applications contains more full featured examples that use 3rd party libraries.

awesome-pion contains projects that have used Pion, and serve as real world examples of usage.

GoDoc is an auto generated API reference. All our Public APIs are commented.

FAQ has answers to common questions. If you have a question not covered please ask in Slack we are always looking to expand it.

Now go build something awesome! Here are some ideas to get your creative juices flowing:

  • Send a video file to multiple browser in real time for perfectly synchronized movie watching.
  • Send a webcam on an embedded device to your browser with no additional server required!
  • Securely send data between two servers, without using pub/sub.
  • Record your webcam and do special effects server side.
  • Build a conferencing application that processes audio/video and make decisions off of it.
  • Remotely control a robots and stream its cameras in realtime.

Want to learn more about WebRTC?

Join our Office Hours. Come hang out, ask questions, get help debugging and hear about the cool things being built with WebRTC. We also start every meeting with basic project planning.

Check out WebRTC for the Curious. A book about WebRTC in depth, not just about the APIs. Learn the full details of ICE, SCTP, DTLS, SRTP, and how they work together to make up the WebRTC stack.

This is also a great resource if you are trying to debug. Learn the tools of the trade and how to approach WebRTC issues.

This book is vendor agnostic and will not have any Pion specific information.

Features

PeerConnection API

  • Go implementation of webrtc-pc and webrtc-stats
  • DataChannels
  • Send/Receive audio and video
  • Renegotiation
  • Plan-B and Unified Plan
  • SettingEngine for Pion specific extensions

Connectivity

  • Full ICE Agent
  • ICE Restart
  • Trickle ICE
  • STUN
  • TURN (UDP, TCP, DTLS and TLS)
  • mDNS candidates

DataChannels

  • Ordered/Unordered
  • Lossy/Lossless

Media

Security

  • TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 and TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA for DTLS v1.2
  • SRTP_AEAD_AES_256_GCM and SRTP_AES128_CM_HMAC_SHA1_80 for SRTP
  • Hardware acceleration available for GCM suites

Pure Go

  • No Cgo usage
  • Wide platform support
    • Windows, macOS, Linux, FreeBSD
    • iOS, Android
    • WASM see examples
    • 386, amd64, arm, mips, ppc64
  • Easy to build Numbers generated on Intel(R) Core(TM) i5-2520M CPU @ 2.50GHz
    • Time to build examples/play-from-disk - 0.66s user 0.20s system 306% cpu 0.279 total
    • Time to run entire test suite - 25.60s user 9.40s system 45% cpu 1:16.69 total
  • Tools to measure performance provided

Roadmap

The library is in active development, please refer to the roadmap to track our major milestones. We also maintain a list of Big Ideas these are things we want to build but don't have a clear plan or the resources yet. If you are looking to get involved this is a great place to get started! We would also love to hear your ideas! Even if you can't implement it yourself, it could inspire others.

Community

Pion has an active community on the Slack.

Follow the Pion Twitter for project updates and important WebRTC news.

We are always looking to support your projects. Please reach out if you have something to build! If you need commercial support or don't want to use public methods you can contact us at [email protected]

Contributing

Check out the contributing wiki to join the group of amazing people making this project possible:

License

MIT License - see LICENSE for full text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].