forked from iLambda/lsdj-wave-cruncher
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcrunch.js
70 lines (63 loc) · 1.92 KB
/
crunch.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
var fs = require('fs')
var _ = require('lodash')
var path = require('path')
var cruncher = require('./lib/cruncher.js')
var flags = require('flags')
// define flags
flags.defineBoolean('normalize', false, 'Normalize the wave ?')
flags.defineBoolean('channel', 0, 'Channel for data?')
flags.defineBoolean('linear', false, 'Linear interpolation?')
flags.defineBoolean('exp', false, 'Exponential interpolation?')
flags.defineBoolean('analyze', false, 'Analyze pitch')
flags.defineString('output', '', 'Output filename')
// check usage
if (process.argv.length < 4) {
console.log(`Usage: crunch [SOUND.WAV] [NOTE|BASE FREQUENCY|auto]
Optional flags
--linear|--exp: choose waveform interpolation
--normalize: normalize waveform prior to crunching
--channel=0: choose channel 0 or 1 for stereo wave file
--output=filename: provide output filename
--analyze: analyze waveform only, do not output .snt file`)
process.exit(1)
}
// parse flags
flags.parse(process.argv.slice(4))
// log
console.log("Crunching data...")
// crunch
var synthdata = cruncher(process.argv[2], process.argv[3], {
normalize: flags.get('normalize'),
channel: flags.get('channel'),
linear: flags.get('linear'),
exp: flags.get('exp')
})
// log
var analyze = flags.get('analyze')
var output = flags.get('output')
if (output.length < 1) {
var filename = path.basename(process.argv[2], path.extname(process.argv[2])) + '.snt'
} else {
var filename = output
}
// creating buffer
var buf = Buffer.from(_.map(_.chunk(synthdata, 2), function (chunk) {
return _.reduce(chunk, function(cur, oth) {
return (cur << 4) + oth
}, 0)
}))
if (!analyze) {
console.log("Saving data as " + filename + "...")
// save buff
fs.writeFile(path.dirname(process.argv[2]) + "/" + filename, buf, function(err) {
// error
if (err) {
console.log("Error : " + err)
process.exit(1)
} else {
console.log("Successfully output " + filename + "!")
}
})
}
// done
console.log('Done!')