forked from hibas123/ScreenSharingThing
Compare commits
No commits in common. "5c47882b194bdd6c65a942a980d6f032edf450dc" and "4840394627fb8dcf3fcfc1d22378af6299f5c6f4" have entirely different histories.
5c47882b19
...
4840394627
7
public/css/bootstrap.min.css
vendored
7
public/css/bootstrap.min.css
vendored
File diff suppressed because one or more lines are too long
@ -6,21 +6,22 @@
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>SimpleStream</title>
|
||||
<!-- //asset self hosting for non internet environments
|
||||
//TODO: improve this later with correct tools like bundeling
|
||||
-->
|
||||
|
||||
<link href="./css/bootstrap.min.css" rel="stylesheet">
|
||||
<script src="./lib/jquery.min.js"></script>
|
||||
<script src="./lib/bootstrap.bundle.min.js"></script>
|
||||
<script src="./lib/peerjs.min.js"></script>
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
|
||||
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"
|
||||
integrity="sha512-894YE6QWD5I59HgZOGReFYm4dnWc1Qt5NtvYSaNcOP+u1T9qYdvdihz0PPSiiqn/+/3e7Jo4EaG7TubfWGUrMQ=="
|
||||
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
|
||||
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
|
||||
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
|
||||
crossorigin="anonymous"></script>
|
||||
<script src="https://unpkg.com/peerjs@1.3.1"></script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div class="row ">
|
||||
<div class="col-md-auto">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<h1>SimpleStream</h1>
|
||||
<h2>Your ID: <span id="streamId"></span></h2>
|
||||
<div id="streamURLCont">
|
||||
@ -32,7 +33,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<video id="localVideo" style="width: 100%; height: 100%;" controls></video>
|
||||
<video id="localVideo" style="width: 100%" controls></video>
|
||||
</div>
|
||||
|
||||
|
||||
|
7
public/lib/bootstrap.bundle.min.js
vendored
7
public/lib/bootstrap.bundle.min.js
vendored
File diff suppressed because one or more lines are too long
2
public/lib/jquery.min.js
vendored
2
public/lib/jquery.min.js
vendored
File diff suppressed because one or more lines are too long
70
public/lib/peerjs.min.js
vendored
70
public/lib/peerjs.min.js
vendored
File diff suppressed because one or more lines are too long
@ -59,12 +59,9 @@ sf.streamId_text = "Loading...";
|
||||
sf.streamURL_text = "Loading...";
|
||||
|
||||
let connectToId = new URL(window.location.href).searchParams.get("id");
|
||||
let ownId = new URL(window.location.href).searchParams.get("own_id")
|
||||
|
||||
let bitrate = new URL(window.location.href).searchParams.get("br") || 50000;
|
||||
|
||||
//Connect to ID means: Iam the screensharer now.
|
||||
//no ID Specified = Iam the Viewer
|
||||
if (connectToId) {
|
||||
sf.streamURLCont_style = "display:none";
|
||||
sf.connectToCont_style = "display:block";
|
||||
@ -74,23 +71,11 @@ if (connectToId) {
|
||||
sf.connectToCont_style = "display:none";
|
||||
}
|
||||
|
||||
if (ownId) {
|
||||
var peer = new Peer(ownId, {
|
||||
var peer = new Peer({
|
||||
host: window.location.hostname,
|
||||
port: window.location.port,
|
||||
path: "/peerjs",
|
||||
});
|
||||
|
||||
|
||||
} else {
|
||||
var peer = new Peer({
|
||||
host: window.location.hostname,
|
||||
port: window.location.port,
|
||||
path: "/peerjs",
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
});
|
||||
|
||||
function bitrateTransform(sdp) {
|
||||
var arr = sdp.split("\r\n");
|
||||
@ -116,8 +101,7 @@ let currentStream = undefined;
|
||||
peer.on("open", (id) => {
|
||||
console.log("ID", id);
|
||||
sf.streamId_text = id;
|
||||
//clearing the params from the url
|
||||
let url = new URL(window.location.href.split('?')[0]);
|
||||
let url = new URL(window.location.href);
|
||||
url.searchParams.set("id", id);
|
||||
sf.streamURL_text = url.href;
|
||||
sf.streamURL_href = url.href;
|
||||
@ -133,7 +117,7 @@ peer.on("open", (id) => {
|
||||
video: true,
|
||||
})
|
||||
.then((stream) => {
|
||||
if (currentStream) {
|
||||
if(currentStream) {
|
||||
currentStream.getTracks().forEach(track => track.stop())
|
||||
}
|
||||
currentStream = stream;
|
||||
|
Loading…
Reference in New Issue
Block a user