
Security News
curl Shuts Down Bug Bounty Program After Flood of AI Slop Reports
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.
transcode-stream
Advanced tools
Transform stream that transcodes video and audio codecs
npm install transcode-stream
const transcode = require('transcode-stream')
inputStream
.pipe(transcode({
vcodec: 'h264',
acodec: 'mp3'
}))
.pipe(outputStream)
transformStream = transcode(options)Transcode an incoding audio or video stream.
Options include:
{
acodec: 'audio-codec-to-use', // defaults to 'copy'
vcodec: 'video-codec-to-use', // defaults to 'copy'
format: 'container-format' // defaults to mp4
}
FFMPEG is used for the actual transcoding so make sure that is in your PATH. PRs for more options welcome.
writableStream = transcode.info(cb)Get media info about an incoding stream. Returns an object that looks like this:
{
vcodec: 'the-video-codec-used',
acodec: 'the-audio-codec-used',
width: videoWidth,
height: videoHeight
}
MIT
FAQs
Stream that transcodes video and audio codecs
The npm package transcode-stream receives a total of 1 weekly downloads. As such, transcode-stream popularity was classified as not popular.
We found that transcode-stream demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
A surge of AI-generated vulnerability reports has pushed open source maintainers to rethink bug bounties and tighten security disclosure processes.

Product
Scan results now load faster and remain consistent over time, with stable URLs and on-demand rescans for fresh security data.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.