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
0.0.2.1
- Fix Firefox video stream, fullscreen error
0.0.2
- MSSQL Server Database support
- PHP Webserver 5.5 Or above
- MYSQL Database
- 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
- Create user (register)
- Sign in with existing user
- Clikc another user on the left panel
- Press call button
- Mute outgoing voice
- Disable outgoing video
- Go fullscreen
<?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'
);
?>
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)
- [jQuery]
- [Bootstrap]
- [PeerJS]
2015-01-20 [jQuery]:http://jquery.com/ [CallMe]:http://atandrastoth.co.uk/main/pages/callme/ [PeerJS]:http://peerjs.com/ [Bootstrap]:http://getbootstrap.com/