-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstreamHelper.js
172 lines (142 loc) · 4.76 KB
/
streamHelper.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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
"use strict";
const fs = require('fs');
const ffmpeg = require('fluent-ffmpeg');
const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const FileHelper = require('./fileHelper');
const Logger = require('./logger');
class StreamHelper {
/**
*
*/
constructor() {
this.fileHelper = new FileHelper();
}
/**
* Start the video stream
*
* @param sessionId
* @param questionnaire
*/
startStreaming(sessionId, questionnaire) {
if (!global.rootDirectory) {
throw new Error('Global variable rootDirectory is not set.');
}
// Create a playlist and set the default scene
try {
this.fileHelper.buildRootPlaylist(sessionId);
this.changeScene(sessionId, questionnaire);
} catch (e) {
Logger.error('Error while setting the default scene:' + e);
//throw?
}
// Save "this" to t so we can use this in the ffmpeg scope
const t = this;
const outputUrl = 'rtmp://localhost/live/' + sessionId;
// TODO: after refresh this gives an error. Maybe the URL random per session?
// TODO: Quit process after session close
// https://github.com/fluent-ffmpeg/node-fluent-ffmpeg
ffmpeg(global.rootDirectory + '/video/' + sessionId + '.txt')
.setFfmpegPath(ffmpegPath)
.inputOptions(
'-re'
)
.addOptions([
'-f flv'
])
.output(outputUrl)
.noAudio()
.videoCodec('libx264')
.on('error', function (s) {
Logger.error('Error on ffmpeg process');
throw Error(s);
})
.on('end', function () {
Logger.info('Done streaming!');
})
.on('start', function (command) {
t.setSceneChanger(command, sessionId, questionnaire)
})
.run();
}
/**
*
* @param commandLine
* @param sessionId
* @param questionnaire
*/
setSceneChanger(commandLine, sessionId, questionnaire) {
Logger.info('Spawned Ffmpeg with command: ' + commandLine);
const t = this;
let counter = 5000; // milliseconds
let changer = function () {
t.changeScene(sessionId, questionnaire);
// Call the function again after X seconds
if (questionnaire.needsRemoval !== true) {
timeout = setTimeout(changer, counter);
} else {
Logger.info('Ended SceneChanger!');
questionnaire = undefined;
clearTimeout(timeout);
}
};
let timeout = setTimeout(changer, counter);
}
/**
* Changes the scene
*
* @param tag {Tag|string} A tag object or the title of a tag
* @param sessionId {string} The ID of the current session
* @param questionnaire
*
* @returns {boolean} true if a scene is available, false if not
*/
changeScene(sessionId, questionnaire) {
if (!global.rootDirectory) {
throw new Error('Global variable rootDirectory is not set.');
}
let tag = '';
// If there are still no answers given
if (questionnaire.answerList.givenAnswers.length === 0) {
// Choose a random question to start with
tag = 'default';
} else {
// Get the best tag available
tag = questionnaire.tagList.getBestTag();
// Increase the amount of plays and change the scene
tag.playCount++;
}
let playlist = [];
const videos = questionnaire.videoList.videos;
// Match videos with the best tag available
for(const v in videos) {
if(videos[v].tags.includes(typeof tag === 'object' ? tag.title : tag)) {
playlist.push(videos[v].source);
}
}
// return false if list is empty
if (!(playlist.length > 0)) {
Logger.warn('There are no available videos to play for tag "' + (typeof tag === 'object' ? tag.title : tag) + '".');
return false;
}
// Build text for playlist file
let text = 'ffconcat version 1.0';
for (let l in playlist) {
text += '\nfile ' + playlist[l];
}
this.fileHelper.changeFileContents(global.rootDirectory + '/video/' + sessionId + '_playlist.txt', text);
return true;
}
get fileHelper() {
return this._fileHelper;
}
set fileHelper(value) {
this._fileHelper = value;
}
get sceneList() {
return this._sceneList;
}
set sceneList(value) {
this._sceneList = value;
}
}
module.exports = StreamHelper;