UNPKG
wav-info
Version:
latest (0.0.1)
0.0.1
Lightweight Node.js WAV file & buffer info helper
github.com/W0LFB0MB/wav-info
W0LFB0MB/wav-info
wav-info
/
wi.js
10 lines
(6 loc)
•
188 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
wavInfo=
require
(
'./wav-info.js'
);
var
filename = process.
argv
[
2
]; wavInfo.
infoByFile
(filename,
function
(
err, info
) {
if
(err)
console
.
log
(err, info);
else
console
.
log
(info); })