Skip to content

Commit 9a4c7fe

Browse files
committed
Added updated docs
1 parent f6c65d6 commit 9a4c7fe

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

src/docs-page.html

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -249,6 +249,9 @@ <h4>Lighting Correction</h4>
249249
<h1 class="docs-heading">Background Filters</h1>
250250

251251

252+
<p>Our Background filters, based on the Google Meet background segmentaiton model, make it easy to implemet background blur and virtual background features</p>
253+
254+
<p>You can find a live demo of our virtual background filter <a href="https://files.vectorly.io/demo/background-filter/index.html" target="_blank">here</a></p>
252255

253256
<h4 class="section-heading" id="item-background-loading">Loading</h4>
254257

@@ -328,7 +331,7 @@ <h2 class="section-heading">Integration</h2>
328331

329332
</code></pre>
330333

331-
<p>You can find a demo repository for vanilla WebRTC background filtering <a href="https://files.vectorly.io/demo/background/webrtc/index.html">here</a></p>
334+
<p>You can find a demo repository for vanilla WebRTC background filtering <a href="https://github.com/Vectorly/ai-filters-examples/tree/master/background/webrtc-demo">here</a></p>
332335

333336

334337

@@ -373,12 +376,14 @@ <h2 class="section-heading">Integration</h2>
373376
const filteredAgoraTrack = AgoraRTC.createCustomVideoTrack({
374377
mediaStreamTrack: filteredStream.getVideoTracks()[0],
375378
});
376-
client.publish([filteredAgoraTrack, audioTrack], handleFail);
379+
client.publish([filteredAgoraTrack, audioTrack]);
377380
});
378381

379382
</code></pre>
380383
</p>
381384

385+
<p>You can find a working demo repo <a href="https://github.com/Vectorly/ai-filters-examples/tree/master/background/agora-demo" >here</a></p>
386+
382387

383388

384389
<p><b>Twilio</b></p>
@@ -421,6 +426,9 @@ <h2 class="section-heading">Integration</h2>
421426
}, handleError);
422427
</code></pre>
423428

429+
430+
<p>You can find a working demo repo <a href="https://github.com/Vectorly/ai-filters-examples/tree/master/background/vonage-demo" >here</a></p>
431+
424432
</section><!--//section-->
425433

426434
<section>
@@ -669,9 +677,9 @@ <h4 class="section-heading">Integration</h4>
669677
const video = document.getElementById("video" + stream.getId());
670678
const upscaler = new vectorlyUpscaler(video, {token: 'insert-vectorly-token-here'});
671679

672-
client.publish(stream, handleFail);
680+
client.publish(stream);
673681

674-
},handleFail);
682+
});
675683
</code></pre>
676684
</p>
677685

@@ -1127,7 +1135,7 @@ <h1 class="docs-heading">Demos</h1>
11271135
<section class="docs-intro ">
11281136

11291137
<p><b>Virtual Background demo</b></p>
1130-
<p><a href="https://files.vectorly.io/demo/background/webrtc/index.html" target="_blank">Live Virtual Background Demo</a> </p>
1138+
<p><a href="https://files.vectorly.io/demo/background-filter/index.html" target="_blank">Live Virtual Background Demo</a> </p>
11311139

11321140

11331141
<b>AI Upscaling demos</b>

0 commit comments

Comments
 (0)