[mirotalk] - add new domain p2p.mirotalk.org
This commit is contained in:
@@ -5,13 +5,13 @@
|
||||
<hr />
|
||||
|
||||
<p align="center">
|
||||
<a href="https://mirotalk.up.railway.app">mirotalk.up.railway.app</a> or <a href="https://mirotalk.herokuapp.com">mirotalk.herokuapp.com</a>
|
||||
<a href="https://p2p.mirotalk.org">p2p.mirotalk.org</a>
|
||||
</p>
|
||||
|
||||
<hr />
|
||||
|
||||
<p align="center">
|
||||
<a href="https://mirotalk.up.railway.app"><img src="public/images/mirotalk-header.gif"></a>
|
||||
<a href="https://p2p.mirotalk.org"><img src="public/images/mirotalk-header.gif"></a>
|
||||
</p>
|
||||
|
||||
<hr />
|
||||
@@ -63,7 +63,9 @@
|
||||
|
||||
<br/>
|
||||
|
||||
- `Open` https://mirotalk.up.railway.app/newcall or https://mirotalk.herokuapp.com/newcall
|
||||
- `Open` https://p2p.mirotalk.org/newcall or
|
||||
- https://mirotalk.up.railway.app/newcall or
|
||||
- https://mirotalk.herokuapp.com/newcall
|
||||
- `Pick` your Room name and Join
|
||||
- `Allow` using the camera and microphone
|
||||
- `Share` the Room URL and Wait for someone to join for the video conference
|
||||
@@ -76,6 +78,7 @@
|
||||
<br/>
|
||||
|
||||
- You can `join` directly to `room` by going to:
|
||||
- https://p2p.mirotalk.org/join?room=test&name=mirotalk&audio=0&video=0&screen=0¬ify=0
|
||||
- https://mirotalk.up.railway.app/join?room=test&name=mirotalk&audio=0&video=0&screen=0¬ify=0
|
||||
- https://mirotalk.herokuapp.com/join?room=test&name=mirotalk&audio=0&video=0&screen=0¬ify=0
|
||||
|
||||
@@ -100,7 +103,7 @@ Embedding a meeting into a service or app using an iframe.
|
||||
```html
|
||||
<iframe
|
||||
allow="camera; microphone; fullscreen; display-capture; autoplay"
|
||||
src="https://mirotalk.up.railway.app/newcall"
|
||||
src="https://p2p.mirotalk.org/newcall"
|
||||
style="height: 100%; width: 100%; border: 0px;"
|
||||
></iframe>
|
||||
```
|
||||
@@ -180,18 +183,19 @@ You can start videoconferencing directly from your Local PC, and be reachable fr
|
||||
```bash
|
||||
# The response will give you a entrypoint / Room URL for your meeting, where authorization: API_KEY_SECRET.
|
||||
$ curl -X POST "http://localhost:3000/api/v1/meeting" -H "authorization: mirotalk_default_secret" -H "Content-Type: application/json"
|
||||
$ curl -X POST "https://p2p.mirotalk.org/api/v1/meeting" -H "authorization: mirotalk_default_secret" -H "Content-Type: application/json"
|
||||
$ curl -X POST "https://mirotalk.up.railway.app/api/v1/meeting" -H "authorization: mirotalk_default_secret" -H "Content-Type: application/json"
|
||||
$ curl -X POST "https://mirotalk.herokuapp.com/api/v1/meeting" -H "authorization: mirotalk_default_secret" -H "Content-Type: application/json"
|
||||
```
|
||||
|
||||
## API Documentation
|
||||
|
||||
The API documentation uses [swagger](https://swagger.io/) at http://localhost:3000/api/v1/docs. Or check it out on [railway](https://mirotalk.up.railway.app/api/v1/docs) & [heroku](https://mirotalk.herokuapp.com/api/v1/docs).
|
||||
The API documentation uses [swagger](https://swagger.io/) at http://localhost:3000/api/v1/docs. Or check it out on [live](https://p2p.mirotalk.org/api/v1/docs) & [heroku](https://mirotalk.herokuapp.com/api/v1/docs).
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>Live Demo</summary>
|
||||
<summary>Other Live Demo</summary>
|
||||
|
||||
<br/>
|
||||
|
||||
|
||||
+3
-3
@@ -1,4 +1,4 @@
|
||||
[](https://mirotalk.up.railway.app/api/v1/docs)
|
||||
[](https://p2p.mirotalk.org/api/v1/docs)
|
||||
|
||||
## Create a meeting
|
||||
|
||||
@@ -23,7 +23,7 @@ Embedding a meeting into a `service` or `app` requires using an `iframe` with th
|
||||
```html
|
||||
<iframe
|
||||
allow="camera; microphone; fullscreen; display-capture; autoplay"
|
||||
src="https://mirotalk.up.railway.app/join/room_name"
|
||||
src="https://p2p.mirotalk.org/join/room_name"
|
||||
style="height: 100%; width: 100%; border: 0px;"
|
||||
></iframe>
|
||||
```
|
||||
@@ -35,7 +35,7 @@ Develop your `website` or `application`, and bring `video meetings` in with a si
|
||||
```html
|
||||
<iframe
|
||||
allow="camera; microphone; fullscreen; display-capture; autoplay"
|
||||
src="https://mirotalk.up.railway.app/newcall"
|
||||
src="https://p2p.mirotalk.org/newcall"
|
||||
style="height: 100%; width: 100%; border: 0px;"
|
||||
></iframe>
|
||||
```
|
||||
|
||||
@@ -3,7 +3,8 @@ const fetch = require('node-fetch');
|
||||
const API_KEY = 'mirotalk_default_secret';
|
||||
// const MIROTALK_URL = "http://localhost:3000/api/v1/meeting";
|
||||
// const MIROTALK_URL = "https://mirotalk.herokuapp.com/api/v1/meeting";
|
||||
const MIROTALK_URL = 'https://mirotalk.up.railway.app/api/v1/meeting';
|
||||
// const MIROTALK_URL = 'https://mirotalk.up.railway.app/api/v1/meeting';
|
||||
const MIROTALK_URL = 'https://p2p.mirotalk.org/api/v1/meeting';
|
||||
|
||||
function getResponse() {
|
||||
return fetch(MIROTALK_URL, {
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
$API_KEY = "mirotalk_default_secret";
|
||||
// $MIROTALK_URL = "http://localhost:3000/api/v1/meeting";
|
||||
// $MIROTALK_URL = "https://mirotalk.herokuapp.com/api/v1/meeting";
|
||||
$MIROTALK_URL = "https://mirotalk.up.railway.app/api/v1/meeting";
|
||||
// $MIROTALK_URL = "https://mirotalk.up.railway.app/api/v1/meeting";
|
||||
$MIROTALK_URL = "https://p2p.mirotalk.org/api/v1/meeting";
|
||||
|
||||
$ch = curl_init();
|
||||
curl_setopt($ch, CURLOPT_URL, $MIROTALK_URL);
|
||||
|
||||
@@ -4,7 +4,8 @@ import json
|
||||
API_KEY = "mirotalk_default_secret"
|
||||
# MIROTALK_URL = "http://localhost:3000/api/v1/meeting"
|
||||
# MIROTALK_URL = "https://mirotalk.herokuapp.com/api/v1/meeting"
|
||||
MIROTALK_URL = "https://mirotalk.up.railway.app/api/v1/meeting"
|
||||
# MIROTALK_URL = "https://mirotalk.up.railway.app/api/v1/meeting"
|
||||
MIROTALK_URL = "https://p2p.mirotalk.org/api/v1/meeting"
|
||||
|
||||
headers = {
|
||||
"authorization": API_KEY,
|
||||
|
||||
@@ -3,7 +3,8 @@
|
||||
API_KEY="mirotalk_default_secret"
|
||||
# MIROTALK_URL="http://localhost:3000/api/v1/meeting"
|
||||
# MIROTALK_URL=https://mirotalk.herokuapp.com/api/v1/meeting
|
||||
MIROTALK_URL=https://mirotalk.up.railway.app/api/v1/meeting
|
||||
# MIROTALK_URL=https://mirotalk.up.railway.app/api/v1/meeting
|
||||
MIROTALK_URL=https://p2p.mirotalk.org/api/v1/meeting
|
||||
|
||||
curl $MIROTALK_URL \
|
||||
--header "authorization: $API_KEY" \
|
||||
|
||||
+1
-1
@@ -26,7 +26,7 @@ dependencies: {
|
||||
* MiroTalk P2P - Server component
|
||||
*
|
||||
* @link GitHub: https://github.com/miroslavpejic85/mirotalk
|
||||
* @link Live demo: https://mirotalk.up.railway.app or https://mirotalk.herokuapp.com
|
||||
* @link Live demo: https://p2p.mirotalk.org or https://mirotalk.up.railway.app or https://mirotalk.herokuapp.com
|
||||
* @license For open source use: AGPLv3
|
||||
* @license For commercial or closed source, contact us at info.mirotalk@gmail.com
|
||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||
|
||||
+1
-1
@@ -10,7 +10,7 @@
|
||||
* MiroTalk P2P - Client component
|
||||
*
|
||||
* @link GitHub: https://github.com/miroslavpejic85/mirotalk
|
||||
* @link Live demo: https://mirotalk.up.railway.app or https://mirotalk.herokuapp.com
|
||||
* @link Live demo: https://p2p.mirotalk.org or https://mirotalk.up.railway.app or https://mirotalk.herokuapp.com
|
||||
* @license For open source use: AGPLv3
|
||||
* @license For commercial or closed source, contact us at info.mirotalk@gmail.com
|
||||
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
|
||||
|
||||
@@ -31,8 +31,8 @@
|
||||
property="og:description"
|
||||
content="MiroTalk calling provides real-time HD quality and latency simply not available with traditional technology."
|
||||
/>
|
||||
<meta property="og:image" content="https://mirotalk.up.railway.app/images/preview.png" />
|
||||
<meta property="og:url" content="https://mirotalk.herokuapp.com/" />
|
||||
<meta property="og:image" content="https://p2p.mirotalk.org/images/preview.png" />
|
||||
<meta property="og:url" content="https://p2p.mirotalk.org" />
|
||||
|
||||
<!-- StyleSheet -->
|
||||
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
property="og:description"
|
||||
content="MiroTalk calling provides real-time HD quality and latency simply not available with traditional technology."
|
||||
/>
|
||||
<meta property="og:image" content="https://mirotalk.up.railway.app/images/preview.png" />
|
||||
<meta property="og:url" content="https://mirotalk.herokuapp.com/" />
|
||||
<meta property="og:image" content="https://p2p.mirotalk.org/images/preview.png" />
|
||||
<meta property="og:url" content="https://p2p.mirotalk.org" />
|
||||
|
||||
<!-- StyleSheet -->
|
||||
|
||||
|
||||
@@ -38,8 +38,8 @@
|
||||
<meta property="og:site_name" content="MiroTalk" />
|
||||
<meta property="og:title" content="Click the link to join this call." />
|
||||
<meta property="og:description" content="Free WebRTC browser-based video call." />
|
||||
<meta property="og:image" content="https://mirotalk.up.railway.app/images/preview.png" />
|
||||
<meta property="og:url" content="https://mirotalk.herokuapp.com/" />
|
||||
<meta property="og:image" content="https://p2p.mirotalk.org/images/preview.png" />
|
||||
<meta property="og:url" content="https://p2p.mirotalk.org" />
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="../images/favicon.png" />
|
||||
|
||||
<!-- StyleSheet -->
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
property="og:description"
|
||||
content="MiroTalk calling provides real-time HD quality and latency simply not available with traditional technology."
|
||||
/>
|
||||
<meta property="og:image" content="https://mirotalk.up.railway.app/images/preview.png" />
|
||||
<meta property="og:url" content="https://mirotalk.herokuapp.com/" />
|
||||
<meta property="og:image" content="https://p2p.mirotalk.org/images/preview.png" />
|
||||
<meta property="og:url" content="https://p2p.mirotalk.org" />
|
||||
|
||||
<!-- StyleSheet -->
|
||||
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
property="og:description"
|
||||
content="MiroTalk calling provides real-time HD quality and latency simply not available with traditional technology."
|
||||
/>
|
||||
<meta property="og:image" content="https://mirotalk.up.railway.app/images/preview.png" />
|
||||
<meta property="og:url" content="https://mirotalk.herokuapp.com/" />
|
||||
<meta property="og:image" content="https://p2p.mirotalk.org/images/preview.png" />
|
||||
<meta property="og:url" content="https://p2p.mirotalk.org" />
|
||||
|
||||
<!-- StyleSheet -->
|
||||
|
||||
|
||||
@@ -31,8 +31,8 @@
|
||||
property="og:description"
|
||||
content="MiroTalk calling provides real-time HD quality and latency simply not available with traditional technology."
|
||||
/>
|
||||
<meta property="og:image" content="https://mirotalk.up.railway.app/images/preview.png" />
|
||||
<meta property="og:url" content="https://mirotalk.herokuapp.com/" />
|
||||
<meta property="og:image" content="https://p2p.mirotalk.org/images/preview.png" />
|
||||
<meta property="og:url" content="https://p2p.mirotalk.org" />
|
||||
|
||||
<!-- StyleSheet -->
|
||||
|
||||
|
||||
@@ -40,8 +40,8 @@
|
||||
property="og:description"
|
||||
content="MiroTalk calling provides real-time HD quality and latency simply not available with traditional technology."
|
||||
/>
|
||||
<meta property="og:image" content="https://mirotalk.up.railway.app/images/preview.png" />
|
||||
<meta property="og:url" content="https://mirotalk.herokuapp.com/" />
|
||||
<meta property="og:image" content="https://p2p.mirotalk.org/images/preview.png" />
|
||||
<meta property="og:url" content="https://p2p.mirotalk.org" />
|
||||
|
||||
<!-- StyleSheet -->
|
||||
|
||||
|
||||
Reference in New Issue
Block a user