![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
mediaplex
Media processing library for Node.js
yarn add mediaplex
pnpm add mediaplex
bun add mediaplex
npm install mediaplex
You can use Mediaplex to probe media files for metadata. Here's an example:
const mediaplex = require('mediaplex');
const stream = createReadStream('./media.mp3');
const { result } = await mediaplex.probeStream(stream);
console.log(result);
/* Sample Output */
{
channels: 2,
sampleRate: 44100,
framesPerBlock: 0,
codec: 4099, // use `CodecType` enum to validate this
nFrames: 796032,
duration: 18, // seconds
metadata: [
{ name: 'TXXX:major_brand', value: 'mp42' },
{ name: 'TXXX:minor_version', value: '0' },
{ name: 'TXXX:compatible_brands', value: 'isommp42' },
{ name: 'TSSE', value: 'Lavf59.6.100' },
{ name: 'TIT2', value: "..." },
{ name: 'TPE1', value: '...' },
{ name: 'TALB', value: '...' },
{ name: 'TCON', value: '...' },
{ name: 'TPUB', value: '...' }
]
}
This will output an object containing information about the media file, including the number of channels, sample rate, codec, duration, and metadata.
The default probe size is 2MB
, but you can adjust this as needed by passing the second argument to probeStream
:
// probe only 1024 bytes
const { result } = await mediaplex.probeStream(stream, 1024);
// probe 5 MB
const { result } = await mediaplex.probeStream(stream, 5 * 1024 * 1024);
Mediaplex also includes an Opus encoder/decoder, which can be used as a drop-in replacement for @discordjs/opus
. Here's an example on how to use it:
const { OpusEncoder, getOpusVersion } = require("mediaplex");
console.log(getOpusVersion()); // libopus xxx
const encoder = new OpusEncoder(48000, 2);
const encoded = encoder.encode(buffer);
const decoded = encoder.decode(encoded);
You can use OpusEncoder
to encode pcm data to opus and decode opus data to pcm format. Stream interface is provided by @discord-player/opus package.
FAQs
Media processing library for Node.js
The npm package mediaplex receives a total of 1,147 weekly downloads. As such, mediaplex popularity was classified as popular.
We found that mediaplex 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.