-
Notifications
You must be signed in to change notification settings - Fork 27
/
server.ts
108 lines (100 loc) · 3 KB
/
server.ts
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
* Reference implementation of Channel Engine library
*/
import { ChannelEngine, ChannelEngineOpts,
IAssetManager, IChannelManager,
VodRequest, VodResponse, Channel, ChannelProfile
} from "./index";
const STITCH_ENDPOINT =
process.env.STITCH_ENDPOINT ||
"http://lambda.eyevinn.technology/stitch/master.m3u8";
class RefAssetManager implements IAssetManager {
private assets;
private pos;
constructor(opts?) {
this.assets = {
1: [
{
id: 1,
title: "Tears of Steel",
uri: "https://maitv-vod.lab.eyevinn.technology/tearsofsteel_4k.mov/master.m3u8",
},
{
id: 2,
title: "VINN",
uri: "https://maitv-vod.lab.eyevinn.technology/VINN.mp4/master.m3u8",
},
],
};
this.pos = {
1: 1,
};
}
/**
*
* @param {Object} vodRequest
* {
* sessionId,
* category,
* playlistId
* }
*/
getNextVod(vodRequest: VodRequest): Promise<VodResponse> {
return new Promise((resolve, reject) => {
const channelId = vodRequest.playlistId;
if (this.assets[channelId]) {
let vod = this.assets[channelId][this.pos[channelId]++];
if (this.pos[channelId] > this.assets[channelId].length - 1) {
this.pos[channelId] = 0;
}
const payload = {
uri: vod.uri,
breaks: [
{
pos: 100,
duration: 15 * 1000,
url: "https://maitv-vod.lab.eyevinn.technology/ads/6cd7d768_e214_4ebc_9f14_7ed89710115e_mp4/master.m3u8",
},
],
};
const buff = Buffer.from(JSON.stringify(payload));
const encodedPayload = buff.toString("base64");
const vodResponse = {
id: vod.id,
title: vod.title,
uri: STITCH_ENDPOINT + "?payload=" + encodedPayload,
};
resolve(vodResponse);
} else {
reject("Invalid channelId provided");
}
});
}
}
class RefChannelManager implements IChannelManager {
getChannels(): Channel[] {
//return [ { id: '1', profile: this._getProfile() }, { id: 'faulty', profile: this._getProfile() } ];
return [{ id: "1", profile: this._getProfile() }];
}
_getProfile(): ChannelProfile[] {
return [
{ bw: 6134000, codecs: "avc1.4d001f,mp4a.40.2", resolution: [1024, 458] },
{ bw: 2323000, codecs: "avc1.4d001f,mp4a.40.2", resolution: [640, 286] },
{ bw: 1313000, codecs: "avc1.4d001f,mp4a.40.2", resolution: [480, 214] },
];
}
}
const refAssetManager = new RefAssetManager();
const refChannelManager = new RefChannelManager();
const engineOptions: ChannelEngineOpts = {
heartbeat: "/",
averageSegmentDuration: 2000,
channelManager: refChannelManager,
defaultSlateUri:
"https://maitv-vod.lab.eyevinn.technology/slate-consuo.mp4/master.m3u8",
slateRepetitions: 10,
redisUrl: process.env.REDIS_URL,
};
const engine = new ChannelEngine(refAssetManager, engineOptions);
engine.start();
engine.listen(process.env.PORT || 8000);