Skip to content

Covert-Inferno/callme

 
 

Repository files navigation

CallMe Video chat application

CallMe is a very simple Video chat application

  • Very simple usage
  • Some importan options
  • Quick implementation
  • Registration with profile image
  • Password reminder

[CallMe] - Online Demo

Version

0.0.2.1

  • Fix Firefox video stream, fullscreen error

Version

0.0.2

  • MSSQL Server Database support

Version

0.0.1 Requirements

  • PHP Webserver 5.5 Or above
  • MYSQL Database

Installation

  • Copy whole folder (callme) to your web server.
  • Register on [PeerJS] website. Obtain your peer key.
  • Fill the config.php with yours details.
  • Start application
  • After first launch, auto creating table 'callme_users' in the database

Usage

  • Create user (register)
  • Sign in with existing user
  • Clikc another user on the left panel
  • Press call button

Options

  • Mute outgoing voice
  • Disable outgoing video
  • Go fullscreen

config.php (in folder callme)

<?php
$_SESSION['cfg'] = array(
	'SQL_CONN' => 'mysql:host=HOST;dbname=DB_NAME;charset=utf8', 
	'SQL_USER' => 'USER', 
	'SQL_PASS' => 'PASS',
	//sqlsrv connect :
	//'SQL_CONN' => 'sqlsrv:Server=SERVER;Database=DB_NAME', 
	//'SQL_USER' => null, 
	//'SQL_PASS' => null,
	'PEER_KEY' => 'OBTAINED_PEER_KEY'
	);
?>

Planned updates

v.0.0.3

  • Only own contact showed
  • Search among users by name Or email
  • Send contact request
  • Accept or deny request

v.0.0.4

  • Sending Message to another user (Chat)

Used plugins, frameworks etc:

  • [jQuery]
  • [Bootstrap]
  • [PeerJS]

License

MIT Author: Tóth András

http://atandrastoth.co.uk/

2015-01-20 [jQuery]:http://jquery.com/ [CallMe]:http://atandrastoth.co.uk/main/pages/callme/ [PeerJS]:http://peerjs.com/ [Bootstrap]:http://getbootstrap.com/

Releases

No releases published

Packages

No packages published

Languages

  • PHP 49.4%
  • JavaScript 36.4%
  • CSS 14.2%