UNPKG

retroload

Version:

Command line utility for converting tape archive files of historical computers into sound for loading them on real devices

9 lines (8 loc) 365 B
import { type PlayerWrapper } from './PlayerWrapper.js'; export declare class SoxWrapper implements PlayerWrapper { private readonly sampleRate; private readonly channels; static create(sampleRate: number, bitDepth: number, channels: number): Promise<SoxWrapper | undefined>; private constructor(); play(buffer: Uint8Array): Promise<unknown>; }