Skip to content

pedro-ramirez-suarez/VideoChat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VideoChat

Home page

A video chat with HTML5 + javascript + Server Sent Events

Created with Asp.Net MVC 5 and Needletail.MVC to facilitate SSE

The application supports only two users, but with minor changes it can support many more.

Using the following open source projects:

  • Bootstap
  • JQuery
  • Recorderjs
  • libmp3lame-js

I modified the Recorderjs library to record mono audio instead of stereo and also to automatically convert the wav file to a mp3 file using the libmp3lame-js.

Important SSE is not supported on Internet Explorer(any version), also, sometimes SSE does not work fine on IIS Express.

This is just a proof of concept, there are better technologies to create a video chat like WebRTC, but WebRTC works with web sockets, the idea behind this proyect was to test if SSE can be used for that kind of applications, the main limitations of using SSE for this kind of application are:

  • SSE is not peer to peer, so it's slower.
  • The ammount of data received and sent is bigger with SSE, to upload data to the server, you need to send it as a file, or as a string, if you send strings you need to be sure that those are Base64(which increase the size) otherwise the server may reject the request, also, when sending data to the client, you can only serve files or strings, as incomming connections, you need to convert those strings to Base64 or the server may not send the info that you want.
  • Trial and error is the way you sicronize the image and audio.

About

A video chat with HTML5 + javascript + Server Sent Events

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published