-
Notifications
You must be signed in to change notification settings - Fork 39
/
util.js
70 lines (65 loc) · 1.85 KB
/
util.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
/**
* Copyright 2014 IBM Corp. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
"use strict";
var path = require("path"),
fs = require("fs"),
mkdirp = require("mkdirp"),
uuid = require("node-uuid"),
sox = require("sox");
var dest = path.resolve("./transcode");
mkdirp(dest, function(err) {
if (err) {
throw err;
}
});
var transcode = function(input, output, cb) {
var job = sox.transcode(input, output, {
format: "wav",
});
job.on("error", function (err) {
console.error(err)
});
job.on("progress", function (amountDone, amountTotal) {
console.log("progress", amountDone, amountTotal)
});
job.on("end", function () {
console.log("Transcoding finished.")
cb()
});
job.start()
}
module.exports = {
/**
* Work around an iOS bug which prevents WAV files from playing if a valid
* duration is not specified. This occurs when streaming an audio file
* directly from the source.
**/
fixEncoding: function(stream, res) {
var id = uuid.v4();
var input = path.join(dest, "in_" + id + ".wav");
var writeStream = fs.createWriteStream(input);
stream.pipe(writeStream);
writeStream.on("finish", function() {
var output = path.join(dest, "out_" + id + ".wav");
transcode(input, output, function() {
res.sendFile(output, null, function(err) {
fs.unlink(input);
fs.unlink(output);
});
});
});
}
};