Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@mux/mux-audio
Advanced tools
<mux-audio></mux-audio>
is a Mux-flavored HTML5 audio element.
If you are familiar with using <audio />
+ Hls.js in your application, then you'll feel right at home with this web component.
If you're using npm
or yarn
, install that way:
yarn add @mux/mux-audio
or
npm i @mux/mux-audio
Then, import the library into your application with either import
or require
:
import '@mux/mux-audio';
or
require('@mux/mux-audio');
Alternatively, use the CDN hosted version of this package:
<script src="https://cdn.jsdelivr.net/npm/@mux/mux-audio@0"></script>
If you are using ecmascript modules, you can also load the mux-audio.mjs
file with type=module
:
<script type="module" src="https://cdn.jsdelivr.net/npm/@mux/mux-audio@0/dist/mux-audio.mjs"></script>
<mux-audio>
has all the same features, benefits and options as <mux-video>
. View the documentation for <mux-video>
for details.
Even though we don't (yet!) have our own React
version of <mux-audio>
, you can still use it in your React
app. However, if you're also using TypeScript, make sure you add the following TypeScript definitions, since custom elements (like as <mux-audio>
) will not be recognized as Intrinsic Elements:
interface MuxAudioHTMLAttributes<T> extends React.AudioHTMLAttributes<T> {
debug?: boolean;
autoplay?: boolean;
}
declare global {
namespace JSX {
interface IntrinsicElements {
'mux-audio': React.DetailedHTMLProps<MuxAudioHTMLAttributes<HTMLAudioElement>, HTMLAudioElement>;
}
}
}
FAQs
A custom mux audio element for the browser that Just Works™
The npm package @mux/mux-audio receives a total of 261 weekly downloads. As such, @mux/mux-audio popularity was classified as not popular.
We found that @mux/mux-audio 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.