All Projects → mslosarz → nextrtc-example-videochat

mslosarz / nextrtc-example-videochat

Licence: MIT license
Most simple example of use NextRTC (WebRTC signaling server written in java) where two people can setup video call (treat it like prototype!)

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to nextrtc-example-videochat

Webrtc Text Chat Tutorial
WebRTC Chat Tutorial for Scaledrone Realtime Messaging Service
Stars: ✭ 24 (-33.33%)
Mutual labels:  webrtc-demos
Samples
WebRTC Web demos and samples
Stars: ✭ 11,318 (+31338.89%)
Mutual labels:  webrtc-demos
Mediastreamrecorder
Cross browser audio/video/screen recording. It supports Chrome, Firefox, Opera and Microsoft Edge. It even works on Android browsers. It follows latest MediaRecorder API standards and provides similar APIs.
Stars: ✭ 2,381 (+6513.89%)
Mutual labels:  webrtc-demos
Webrtc Demo
webrtc 演示示例
Stars: ✭ 74 (+105.56%)
Mutual labels:  webrtc-demos
Webrtc Experiment
WebRTC, WebRTC and WebRTC. Everything here is all about WebRTC!!
Stars: ✭ 10,335 (+28608.33%)
Mutual labels:  webrtc-demos
Workerman Webrtc
php webrtc demo based on workerman
Stars: ✭ 161 (+347.22%)
Mutual labels:  webrtc-demos
Webrtc
A reference gradle project that let you explore WebRTC Android in Android Studio.
Stars: ✭ 562 (+1461.11%)
Mutual labels:  webrtc-demos
mirotalk
🚀 WebRTC - P2P - Simple, Secure, Fast Real-Time Video Conferences Up to 4k and 60fps, compatible with all browsers and platforms.
Stars: ✭ 1,593 (+4325%)
Mutual labels:  webrtc-call
Webrtc Data Channel Demo
WebRTC Data Channel demo
Stars: ✭ 116 (+222.22%)
Mutual labels:  webrtc-demos
Cuckoo
🎥 Cuckoo - A free anonymous video-calling web application built with WebRTC and React that provides peer-to-peer video and audio communication in a web browser with no plugins or extensions required.
Stars: ✭ 195 (+441.67%)
Mutual labels:  webrtc-demos
Video Chat App
Simple P2P Text/Voice/Video chat client. Works on Chrome and Firefox, Platforms: Android, Windows, Linux, Mac. Just open the link in Browser, You don't need any extra tools for Video Chat. https://valarpirai.github.io/video-chat-app/
Stars: ✭ 93 (+158.33%)
Mutual labels:  webrtc-demos
Translator
Translator.js is a JavaScript library built top on Google Speech-Recognition & Translation API to transcript and translate voice and text. It supports many locales and brings globalization in WebRTC! https://www.webrtc-experiment.com/Translator/
Stars: ✭ 103 (+186.11%)
Mutual labels:  webrtc-demos
React Webrtc
Video chat using webRTC and react
Stars: ✭ 168 (+366.67%)
Mutual labels:  webrtc-demos
Analysisavp
音视频学习,相关文件格式/协议分析。h264 nalu aac adts flv
Stars: ✭ 38 (+5.56%)
Mutual labels:  webrtc-demos
Webrtcchat
🔏 Pure Browser To Browser Chat (STUN & ICE Servers optional)
Stars: ✭ 230 (+538.89%)
Mutual labels:  webrtc-demos
Webrtc android
webrtc VideoCall VideoConference 视频通话 视频会议
Stars: ✭ 764 (+2022.22%)
Mutual labels:  webrtc-demos
Mobilecameratemplate
A HTML5, JS, CSS Camera interface template. Feel free to use it in your next Computer Vision or AI project.
Stars: ✭ 145 (+302.78%)
Mutual labels:  webrtc-demos
One-to-One-Video-Calling-Open-Source-PHP-Application
This Sample PHP Application demonstrates the use of EnableX webRTC Platform Server APIs and JavaScript Toolkit to develop one to one real time communication (RTC) application. It allows developers to ramp up on app development by hosting on their own devices.
Stars: ✭ 13 (-63.89%)
Mutual labels:  webrtc-demos
demo-rails-webrtc
A demo project shows how to use webrtc on rails
Stars: ✭ 28 (-22.22%)
Mutual labels:  webrtc-demos
Rtcmulticonnection
RTCMultiConnection is a WebRTC JavaScript library for peer-to-peer applications (screen sharing, audio/video conferencing, file sharing, media streaming etc.)
Stars: ✭ 2,187 (+5975%)
Mutual labels:  webrtc-demos

This example is available at page https://examples.nextrtc.org/

Clone project and then

  • enter to directory with project
  • run: mvn clean install && java -jar target/videochat.war

enter to directory src/main/resources and generate self signed certificate (in repository certificate might be expired):

keytool -genkey -alias tomcat -keyalg RSA  -keystore keystore.jks
Enter keystore password: password
Re-enter new password: password
What is your first and last name?
  [Unknown]:  127.0.0.1
What is the name of your organizational unit?
  [Unknown]:  Develepment
What is the name of your organization?
  [Unknown]:  NextRTC
What is the name of your City or Locality?
  [Unknown]:  Cracow
What is the name of your State or Province?
  [Unknown]:  Malopolskie
What is the two-letter country code for this unit?
  [Unknown]:  PL
Is CN=127.0.0.1, OU=Develepment, O=NextRTC, L=Cracow, ST=Malopolskie, C=PL corre
ct?
  [no]:  yes

Enter key password for <tomcat>
  (RETURN if same as keystore password): <RETURN>

then:

  • run: mvn clean install && java -jar target/videochat.war
  • enter https://localhost:8443 in your favourite browser (HTTPS is important, because default http handler isn't configured)
  • accept untrusted certificate

Sometimes websocket (js side) is throwing exception then try to change localhost to 127.0.0.1

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].