Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@wireapp/avs-debugger
Advanced tools
Visualize and debug media tracks in web
npm install @wireapp/avs-debugger
The only way to use it currently is to build from source code and then link to your project
git clone git@github.com:wireapp/wire-avs-debugger.git
npm install
npm run build
npm link
Go to your Project and run:
npm link @wireapp/avs-debugger
<script type="application/javascript" src="dist/index.js"></script>
<track-debugger id="avs-debugger"></track-debugger>
<script>
document.onreadystatechange = function () {
const state = document.readyState;
if (state == 'complete') {
// init web component
window.initTrackDebugger();
// API
document.getElementById('avs-debugger').addTrack(id, name, track);
document.getElementById('avs-debugger').removeTrack(id);
document.getElementById('avs-debugger').hasTrack(id);
document.getElementById('avs-debugger').reset();
// destruct web component
window.destructTrackDebugger();
}
}
</script>
<track-debugger id='avs-debugger'></track-debugger>
import * as avsTrackLogger from '@wireapp/avs-debugger';
// init web component
avsTrackLogger.initTrackDebugger();
// API
avsTrackLogger.addTrack(id, name, track);
avsTrackLogger.removeTrack(id);
avsTrackLogger.hasTrack(id);
avsTrackLogger.reset();
// destruct web component
avsTrackLogger.destructTrackDebugger();
npm install
npm start
npm install
npm run build
The generated artifacts are located in dist
A successful Github release automatically triggers an NPM release.
FAQs
Visualize and debug media tracks
The npm package @wireapp/avs-debugger receives a total of 68 weekly downloads. As such, @wireapp/avs-debugger popularity was classified as not popular.
We found that @wireapp/avs-debugger demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.