v0.2.3
π Deno native audio duration for MP3 / M4A / M4B (no dependencies)
Attributes
Includes Deno configuration
Repository
Current version released
9 months ago
Dependencies
π Deno Audio Duration
Get the millisecond duration of audio files in pure Deno flavoured JavaScript. Currently MP3 / M4A / M4B formats are supported.
Usage
import {duration} from 'jsr:@dbushell/audio-duration@0.2';
const ms = await duration('/path/to/audio.mp3');
The duration
function will detect audio formats based on the file extension. Import and use mp3Duration
and m4aDuration
to bypass this detection.
Other Solutions
If this module is insufficient use another tool with Deno.Command
:
With ffprobe:
ffprobe -loglevel quiet -show_format -print_format json audio.mp3
With exiftool:
exiftool -j -Duration audio.mp3
For example:
const stat = await Deno.stat(entry.path);
const command = new Deno.Command('exiftool', {
args: ['-j', '-Duration', `${entry.path}`]
});
const {stdout} = await command.output();
const json = JSON.parse(
new TextDecoder().decode(stdout)
);
Youβll need to parse the output.
MIT License | Copyright Β© 2024 David Bushell