which framework or library is best to use WebRTC

http://stackoverflow.com/questions/24857637/current-state-of-javascript-webrtc-libraries

I want to know that which framework or library is best to use WebRTC. Here is a small and incomplete list of libraries/SDK out there. Any lib that I forgot, feel free to let me know:

Libraries:

Tutorial/resource for implementing:

Has somebody done a compare of all the frameworks? It would help those who are new to WebRTC.

Update

Having researched on WebRTC as a new technology, I could not find a more complete source than your experience. I decided to post this question in order to make a trigger that will compare the available sources.

Thanks a lot.

That should get you started :-) If you were focussing your question, we could point you to a smaller list. That is is also by no mean exhaustive, but should have the usual suspects.

MCU

  • lynckia/licode - open source
  • meetecho (janus) - open source
  • kurento - open source
  • jitsi (meetme) - open source
  • acano
  • pexip
  • tokbox (mantis)
  • openClove
  • Temasys

Signaling

  • holla (used by twelephone)
  • openPeer (hookflash)

API / SDK

  • twilio (audio only)
  • requestec (product: saypage)
  • plivo
  • Tokbox
  • openClove
  • tropo (audio only)
  • weemo
  • voximplant (audio only?)
  • Priologic (easyRTC, tawk.com, proPhone)
  • Dialogic
  • bistri
  • Apidaze (apiRTC)
  • CafeX
  • hookflash
  • ApiZee
  • Temasys (SkyWayJS)
  • &yet (simpleRTC)
  • RTCMultiConnection (muazkhan, demo)
  • crocodileRTC - the company has been bought/absorbed by ACIVISION. I don‘t know what is the status of this library, you might want to contact peter dunkley for update.
  • peerjs (data channel)
  • rtc.io
  • webrtc.io (no changes for almost a year)
  • webrtc-data.io (stripped down, data only version of webrtc.io)

Product

  • getaroom.io (uses SkywayJS)
  • webrtc-enterprise.com (uses SkywayJS)
  • talky.io (uses simpleRTC)
  • tawk (uses easyRTC)
  • rtccopy (uses webrtc-data.io)
  • twelephone

Tutorials

时间: 2024-12-26 21:14:40

which framework or library is best to use WebRTC的相关文章

.net Framework Class Library(FCL)

from:http://msdn.microsoft.com/en-us/library/ms229335.aspx 我们平时在VS.net里引用的那些类库就是从这里来的 The .NET Framework class library is a library of classes, interfaces, and value types that provides access to system functionality and is designed to be the foundat

Robot Framework + Selenium library + IEDriver环境搭建

目录: 1 Robot框架结构2 环境搭建  2.1 安装Python  2.2 安装Robot Framework  2.3 安装wxPython  2.4 安装RIDE  2.5 安装Selenium2Library  2.6 安装IEDriverServer 1 Robot框架结构 为了更好的了解环境安装,我们先看下框架结构: 图1 Robot Framework Architecture Robot Framework 通过导入不同的库,就可以使用库中所提供的关键字,从而时行相关的测试.

Entity Framework Extended Library (EF扩展类库,支持批量更新、删除、合并多个查询等)

今天乍一看,园子里居然没有关于这个类库的文章,实在是意外毕竟已经有很多介绍EF使用的文章了. E文好的可以直接看https://github.com/loresoft/EntityFramework.Extended 也可以在nuget上直接安装这个包,它的说明有点过时了,最新版本已经改用对IQueryable<T>的扩展,而不是DbSet<T>(已经标记为弃用),所以跟我一样有隔离癖好的就可以大胆使用了.下面介绍如何批量删除.更新.查询. 批量删除 本来我们需要这样删除 ? //

Entity Framework Extended Library

扩展了实体框架的功能类库. https://github.com/loresoft/EntityFramework.Extended 1批量更新/删除 1)删除 //delete all users where FirstName matches context.Users.Delete(u => u.FirstName == "firstname"); 2)更新 //update all tasks with status of 1 to status of 2 context

如何在ASP.NET Core中应用Entity Framework

注:本文提到的代码示例下载地址> How to using Entity Framework DB first in ASP.NET Core 如何在ASP.NET Core中应用Entity Framework 首先为大家提醒一点,.NET Core和经典.NET Framework的Library是不通用的,包括Entity Framework! 哪怎么办? 别急,微软为.NET Core发布了.NET Core版本的Entity Framework,具体配置方法与经典.NET Framew

Spring Framework Ecosystem – Introduction to Spring Projects

来自于:http://springtutorials.com/spring-ecosystem/ Hello and Welcome to Spring Tutorials Blog! Is it fair to assume you have at least heard of Spring Framework official website – spring.io? If not, I would recommend that you check it out. There are som

Robot Framework 的安装和配置

Robot Framework 的安装和配置 在使用 RF(Rebot framework)的时候需要 Python 或 Jython 环境,具体可根据自己的需求来确定.本文以在有 Python 的环境的机器上安装和使用 RF 为例. 在配置过程中需要安装如下包:python 2.7.wxPython.robot framework.robot framework ride.robot framework selenium library. 安装 Python 2.7 RF 框架是基于 Pyth

.NET Framework 框架的一些简单介绍

20世纪90年代以来出现的3种典型的组件技术: 1)OMC(对象组件模型)的CORBA2)Microsoft的COM/DCOM3)Sun公司的JavaBeans 在2002年,微软发布了.NET框架的第一个版本,声称其解决了旧问题并实现了下一代系统的目的..NET框架是一种比MFC和COM编程技术更一致并面向对象的环境.它的特点包括: 1)多平台.可以在多种多样的系统上运行,从服务器.桌面机到PDA和移动电话.2)行业标准.使用行业标准的通信协议,比如:XML.HTTP.SOAP和WSDL.3)

.NET Framework(CLI,CLS,CTS,CLR,FCL,BCL)

最下层蓝色部分是.NET Framework的基础,也是所有应用软件的基础..NET Framework不是凭空出来的,实际上API,COM+,和一些相关驱动依然是它的基石..NET Framework只不过是对这些前辈们进行了系统的封装和扩充,在这个过程中,吸取了Java框架的很多经验.关于Win32 API与.NET Framework API的对应关系,可以参考Microsoft Win32 to Microsoft .NET Framework API Map 菜谱:除了蓝色部分以外,其