-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ | |
<meta charset="utf-8"> | ||
<title></title> | ||
<script src="https://cdn.jsdelivr.net/npm/gun/gun.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].4/js/GunRecorder.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].4/js/GunStreamer.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].4/js/GunViewer.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].4/js/mediabuffer.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].5/js/GunRecorder.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].5/js/GunStreamer.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].5/js/GunViewer.js"></script> | ||
<script src="https://cdn.jsdelivr.net/gh/QVDev/[email protected].5/js/mediabuffer.js"></script> | ||
</head> | ||
|
||
<body> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,10 @@ gunDB.get("qvdev").on(function (data) { | |
var streamer_config = { | ||
dbRecord: "gunmeeting",//The root of the streams | ||
streamId: "qvdev",//The user id you wanna stream | ||
// gun: gunDB,//Gun instance | ||
gun: gunDB,//Gun instance | ||
debug: false,//For debug logs | ||
// onStreamerData: gunViewer.onStreamerData,//If you want manually handle the data manually | ||
url: "https://cdn.jsdelivr.net/gh/QVDev/[email protected].4/js/parser_worker.js"//webworker load remote | ||
url: "https://cdn.jsdelivr.net/gh/QVDev/[email protected].5/js/parser_worker.js"//webworker load remote | ||
} | ||
|
||
//GUN Streamer is the data side. It will convert data and write to GUN db | ||
|