
Research
/Security News
60 Malicious Ruby Gems Used in Targeted Credential Theft Campaign
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Tiny Node.js module to concat your audio files (.wav format) without any gap
Wav-concat node.js module to concat multiple wav audio files using ffmpeg
wav-contat provides a programmatic interface to do basically the same as calling ffmpeg
via CLI like:
ffmpeg -i audio1.wav audio2.wav audio3.wav -y -filter_complex concat=n=3:v=0:a=1 out.wav
You can download static builds of ffmpeg from here.
If you want to use wav-concat
in Heroku, you could use the ffmpeg2 buildpack
npm install wav-concat
var wavconcat = require('wav-concat')
var songs = [
'audio1.wav',
'audio2.wav',
'audio3.wav'
]
wavconcat(songs)
.concat('out.wav')
.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: wavconcat
wav-concat constructor. You should pass an array<string>
with the desired audio files.
Supported audio formats: wav
Merge wav files and generate the output audio to the given file path.
Type: string
Current package semantic version
Type: function
fluent-ffmpeg API constructor
MIT © Thomas Cosialls
FAQs
Tiny Node.js module to concat your audio files (.wav format) without any gap
The npm package wav-concat receives a total of 49 weekly downloads. As such, wav-concat popularity was classified as not popular.
We found that wav-concat 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.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.