-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
70 lines (57 loc) · 2.11 KB
/
index.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
const FFProbe = require("./dist/FFProbe").default;
const FFMpeg = require("./dist/FFMpeg").default;
// const { GetObjectCommand, S3Client, DeleteObjectCommand } = require("@aws-sdk/client-s3");
function asJson(body, statusCode = 200) {
return {
statusCode,
headers: {
"content-type": "application/json"
},
body: JSON.stringify(body)
};
}
exports.handler = async (event) => {
try {
const {
Records,
rawPath,
queryStringParameters: {
url,
} = {},
headers = {},
body,
} = event;
if (rawPath) {
if(rawPath.startsWith("/fast-convert")) {
const { input, output } = JSON.parse(body);
return asJson(await FFMpeg.fastConvert(input, output));
}
if (rawPath.startsWith("/probe")) {
return asJson(await FFProbe.probe(url));
}
if (rawPath.startsWith("/thumb")) {
const { input, output } = JSON.parse(body);
return asJson(await FFMpeg.thumbnails(input, output.thumbnails));
}
if(rawPath.startsWith("/convert")) {
const { input, output } = JSON.parse(body);
return asJson(await FFMpeg.convert(input, output));
}
}
// if(Records) {
// const Bucket = Records[0].s3.bucket.name;
// const Key = decodeURIComponent(event.Records[0].s3.object.key.replace(/\+/g, ' '));
// const client = new S3Client();
// const cmd = new GetObjectCommand({ Bucket, Key });
// const res = await client.send(cmd);
// const { input, output } = JSON.parse(await res.Body.text());
// const r = await FFMpeg.convert(input, output);
// await client.send(new DeleteObjectCommand({ Bucket, Key }));
// return asJson(r);
// }
return asJson(event);
} catch (error) {
console.log(error);
return asJson(error.stack ? error.stack : error.toString(), 500);
}
};