]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/tests/plugins/plugin-transcoding.ts
Introduce videos command
[github/Chocobozzz/PeerTube.git] / server / tests / plugins / plugin-transcoding.ts
1 /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2
3 import 'mocha'
4 import { expect } from 'chai'
5 import { join } from 'path'
6 import { getAudioStream, getVideoFileFPS, getVideoStreamFromFile } from '@server/helpers/ffprobe-utils'
7 import {
8 cleanupTests,
9 flushAndRunServer,
10 PluginsCommand,
11 ServerInfo,
12 setAccessTokensToServers,
13 setDefaultVideoChannel,
14 testFfmpegStreamError,
15 waitJobs
16 } from '@shared/extra-utils'
17 import { VideoPrivacy } from '@shared/models'
18
19 async function createLiveWrapper (server: ServerInfo) {
20 const liveAttributes = {
21 name: 'live video',
22 channelId: server.videoChannel.id,
23 privacy: VideoPrivacy.PUBLIC
24 }
25
26 const { uuid } = await server.liveCommand.create({ fields: liveAttributes })
27
28 return uuid
29 }
30
31 function updateConf (server: ServerInfo, vodProfile: string, liveProfile: string) {
32 return server.configCommand.updateCustomSubConfig({
33 newConfig: {
34 transcoding: {
35 enabled: true,
36 profile: vodProfile,
37 hls: {
38 enabled: true
39 },
40 webtorrent: {
41 enabled: true
42 },
43 resolutions: {
44 '240p': true,
45 '360p': false,
46 '480p': false,
47 '720p': true
48 }
49 },
50 live: {
51 transcoding: {
52 profile: liveProfile,
53 enabled: true,
54 resolutions: {
55 '240p': true,
56 '360p': false,
57 '480p': false,
58 '720p': true
59 }
60 }
61 }
62 }
63 })
64 }
65
66 describe('Test transcoding plugins', function () {
67 let server: ServerInfo
68
69 before(async function () {
70 this.timeout(60000)
71
72 server = await flushAndRunServer(1)
73 await setAccessTokensToServers([ server ])
74 await setDefaultVideoChannel([ server ])
75
76 await updateConf(server, 'default', 'default')
77 })
78
79 describe('When using a plugin adding profiles to existing encoders', function () {
80
81 async function checkVideoFPS (uuid: string, type: 'above' | 'below', fps: number) {
82 const video = await server.videosCommand.get({ id: uuid })
83 const files = video.files.concat(...video.streamingPlaylists.map(p => p.files))
84
85 for (const file of files) {
86 if (type === 'above') {
87 expect(file.fps).to.be.above(fps)
88 } else {
89 expect(file.fps).to.be.below(fps)
90 }
91 }
92 }
93
94 async function checkLiveFPS (uuid: string, type: 'above' | 'below', fps: number) {
95 const playlistUrl = `${server.url}/static/streaming-playlists/hls/${uuid}/0.m3u8`
96 const videoFPS = await getVideoFileFPS(playlistUrl)
97
98 if (type === 'above') {
99 expect(videoFPS).to.be.above(fps)
100 } else {
101 expect(videoFPS).to.be.below(fps)
102 }
103 }
104
105 before(async function () {
106 await server.pluginsCommand.install({ path: PluginsCommand.getPluginTestPath('-transcoding-one') })
107 })
108
109 it('Should have the appropriate available profiles', async function () {
110 const config = await server.configCommand.getConfig()
111
112 expect(config.transcoding.availableProfiles).to.have.members([ 'default', 'low-vod', 'input-options-vod', 'bad-scale-vod' ])
113 expect(config.live.transcoding.availableProfiles).to.have.members([ 'default', 'low-live', 'input-options-live', 'bad-scale-live' ])
114 })
115
116 it('Should not use the plugin profile if not chosen by the admin', async function () {
117 this.timeout(240000)
118
119 const videoUUID = (await server.videosCommand.quickUpload({ name: 'video' })).uuid
120 await waitJobs([ server ])
121
122 await checkVideoFPS(videoUUID, 'above', 20)
123 })
124
125 it('Should use the vod profile', async function () {
126 this.timeout(240000)
127
128 await updateConf(server, 'low-vod', 'default')
129
130 const videoUUID = (await server.videosCommand.quickUpload({ name: 'video' })).uuid
131 await waitJobs([ server ])
132
133 await checkVideoFPS(videoUUID, 'below', 12)
134 })
135
136 it('Should apply input options in vod profile', async function () {
137 this.timeout(240000)
138
139 await updateConf(server, 'input-options-vod', 'default')
140
141 const videoUUID = (await server.videosCommand.quickUpload({ name: 'video' })).uuid
142 await waitJobs([ server ])
143
144 await checkVideoFPS(videoUUID, 'below', 6)
145 })
146
147 it('Should apply the scale filter in vod profile', async function () {
148 this.timeout(240000)
149
150 await updateConf(server, 'bad-scale-vod', 'default')
151
152 const videoUUID = (await server.videosCommand.quickUpload({ name: 'video' })).uuid
153 await waitJobs([ server ])
154
155 // Transcoding failed
156 const video = await server.videosCommand.get({ id: videoUUID })
157 expect(video.files).to.have.lengthOf(1)
158 expect(video.streamingPlaylists).to.have.lengthOf(0)
159 })
160
161 it('Should not use the plugin profile if not chosen by the admin', async function () {
162 this.timeout(240000)
163
164 const liveVideoId = await createLiveWrapper(server)
165
166 await server.liveCommand.sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
167 await server.liveCommand.waitUntilPublished({ videoId: liveVideoId })
168 await waitJobs([ server ])
169
170 await checkLiveFPS(liveVideoId, 'above', 20)
171 })
172
173 it('Should use the live profile', async function () {
174 this.timeout(240000)
175
176 await updateConf(server, 'low-vod', 'low-live')
177
178 const liveVideoId = await createLiveWrapper(server)
179
180 await server.liveCommand.sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
181 await server.liveCommand.waitUntilPublished({ videoId: liveVideoId })
182 await waitJobs([ server ])
183
184 await checkLiveFPS(liveVideoId, 'below', 12)
185 })
186
187 it('Should apply the input options on live profile', async function () {
188 this.timeout(240000)
189
190 await updateConf(server, 'low-vod', 'input-options-live')
191
192 const liveVideoId = await createLiveWrapper(server)
193
194 await server.liveCommand.sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
195 await server.liveCommand.waitUntilPublished({ videoId: liveVideoId })
196 await waitJobs([ server ])
197
198 await checkLiveFPS(liveVideoId, 'below', 6)
199 })
200
201 it('Should apply the scale filter name on live profile', async function () {
202 this.timeout(240000)
203
204 await updateConf(server, 'low-vod', 'bad-scale-live')
205
206 const liveVideoId = await createLiveWrapper(server)
207
208 const command = await server.liveCommand.sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
209 await testFfmpegStreamError(command, true)
210 })
211
212 it('Should default to the default profile if the specified profile does not exist', async function () {
213 this.timeout(240000)
214
215 await server.pluginsCommand.uninstall({ npmName: 'peertube-plugin-test-transcoding-one' })
216
217 const config = await server.configCommand.getConfig()
218
219 expect(config.transcoding.availableProfiles).to.deep.equal([ 'default' ])
220 expect(config.live.transcoding.availableProfiles).to.deep.equal([ 'default' ])
221
222 const videoUUID = (await server.videosCommand.quickUpload({ name: 'video' })).uuid
223 await waitJobs([ server ])
224
225 await checkVideoFPS(videoUUID, 'above', 20)
226 })
227
228 })
229
230 describe('When using a plugin adding new encoders', function () {
231
232 before(async function () {
233 await server.pluginsCommand.install({ path: PluginsCommand.getPluginTestPath('-transcoding-two') })
234
235 await updateConf(server, 'test-vod-profile', 'test-live-profile')
236 })
237
238 it('Should use the new vod encoders', async function () {
239 this.timeout(240000)
240
241 const videoUUID = (await server.videosCommand.quickUpload({ name: 'video', fixture: 'video_short_240p.mp4' })).uuid
242 await waitJobs([ server ])
243
244 const path = server.serversCommand.buildDirectory(join('videos', videoUUID + '-240.mp4'))
245 const audioProbe = await getAudioStream(path)
246 expect(audioProbe.audioStream.codec_name).to.equal('opus')
247
248 const videoProbe = await getVideoStreamFromFile(path)
249 expect(videoProbe.codec_name).to.equal('vp9')
250 })
251
252 it('Should use the new live encoders', async function () {
253 this.timeout(240000)
254
255 const liveVideoId = await createLiveWrapper(server)
256
257 await server.liveCommand.sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short2.webm' })
258 await server.liveCommand.waitUntilPublished({ videoId: liveVideoId })
259 await waitJobs([ server ])
260
261 const playlistUrl = `${server.url}/static/streaming-playlists/hls/${liveVideoId}/0.m3u8`
262 const audioProbe = await getAudioStream(playlistUrl)
263 expect(audioProbe.audioStream.codec_name).to.equal('opus')
264
265 const videoProbe = await getVideoStreamFromFile(playlistUrl)
266 expect(videoProbe.codec_name).to.equal('h264')
267 })
268 })
269
270 after(async function () {
271 await cleanupTests([ server ])
272 })
273 })