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.
audioconcat
Advanced tools
Tiny node.js module to concat multiple audio files using ffmpeg
audioconcat provides a programmatic interface to do basically the same as calling ffmpeg
via CLI like:
ffmpeg -i "concat:audio1.mp3|audio2.mp3" -acodec copy out.mp3
--enable-libmp3lame
You can download static builds of ffmpeg from here.
If you want to use audioconcat
in Heroku, you could use the ffmpeg2 buildpack
npm install audioconcat
var audioconcat = require('audioconcat')
var songs = [
'beatles.mp3',
'greenday.mp3',
'u2.mp3'
]
audioconcat(songs)
.concat('all.mp3')
.on('start', function (command) {
console.log('ffmpeg process started:', command)
})
.on('error', function (err, stdout, stderr) {
console.error('Error:', err)
console.error('ffmpeg stderr:', stderr)
})
.on('end', function (output) {
console.error('Audio created in:', output)
})
Take a look to the programmatic API for more details
Return: audioconcat
audioconcat constructor. You should pass an array<string>
with the desired audio files,
and optionally passing the video render options
object per each image.
Supported audio formats: mp3
, acc
, ogg
(based on your ffmpeg compilation)
Concat files and generate the output audio to the given file path.
Add custom options to ffmpeg
Type: string
Current package semantic version
Type: function
fluent-ffmpeg API constructor
MIT © Tomas Aparicio
FAQs
Concat multiple audio files into a unique one (uses ffmpeg)
We found that audioconcat 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
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.