
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
rns-audiomix
Advanced tools
Native module for mixing multiple audio recordings in **Expo React Native** (Android). It allows combining a base track with recordings, handling delays (`delayMs`), and optional monitoring during playback.
Native module for mixing multiple audio recordings in Expo React Native (Android).
It allows combining a base track with recordings, handling delays (delayMs), and optional monitoring during playback.
npm install audiomix
Link native module if needed (RN < 0.60):
react-native link audiomix
For RN 0.60+, autolinking handles it.
import { audioMix } from 'audiomix';
mixRecordingsaudioMix(
recordings: Array<{ id: string; uri: string; delayMs?: number }>,
selectedIds: string[],
baseTrack: string | null,
monitorPlayback: boolean,
syncValue: number,
)
id and uri. Optional delayMs in ms.recordings to include in mixing.null).true, mixes with base track for monitoring..wav file (stored in app cache).const recordings = [
{ id: '1', uri: '/storage/emulated/0/Music/rec1.wav', delayMs: 120 },
{ id: '2', uri: '/storage/emulated/0/Music/rec2.wav', delayMs: 0 },
];
const selectedIds = ['1'];
const baseTrack = '/storage/emulated/0/Music/base.wav';
audioMix(
recordings,
selectedIds,
baseTrack,
true, // monitorPlayback
0 // syncValue
).then(outputPath => {
console.log('Mixed audio file:', outputPath);
}).catch(err => {
console.error('Mixing error:', err);
});
Output file is generated in the app cache directory with name pattern:
mixed_output_<timestamp>.wav
On error, promise rejects with:
MIX_PREP_ERROR: Input or preparation error.MIX_ERROR: Mixing process failed.MIT
FAQs
Native module for mixing multiple audio recordings in **Expo React Native** (Android). It allows combining a base track with recordings, handling delays (`delayMs`), and optional monitoring during playback.
The npm package rns-audiomix receives a total of 7 weekly downloads. As such, rns-audiomix popularity was classified as not popular.
We found that rns-audiomix demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.

Research
A malicious package uses a QR code as steganography in an innovative technique.

Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.