
Product
Introducing the Alert Details Page: A Better Way to Explore Alerts
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.
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.

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

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.