]>
Commit | Line | Data |
---|---|---|
a1587156 | 1 | /* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */ |
3a149e9f | 2 | |
3a149e9f | 3 | import 'mocha' |
daf6e480 C |
4 | import * as chai from 'chai' |
5 | import { join } from 'path' | |
6 | import { getAudioStream, getVideoStreamSize } from '@server/helpers/ffprobe-utils' | |
3a149e9f | 7 | import { |
ca5c612b | 8 | buildServerDirectory, |
3a149e9f C |
9 | cleanupTests, |
10 | doubleFollow, | |
11 | flushAndRunMultipleServers, | |
a1587156 | 12 | getVideo, |
3a149e9f | 13 | ServerInfo, |
a1587156 | 14 | setAccessTokensToServers, |
3a149e9f | 15 | uploadVideo, |
a1587156 | 16 | waitJobs |
3a149e9f C |
17 | } from '../../../../shared/extra-utils' |
18 | import { VideoDetails } from '../../../../shared/models/videos' | |
3a149e9f C |
19 | |
20 | const expect = chai.expect | |
21 | ||
22 | describe('Test audio only video transcoding', function () { | |
23 | let servers: ServerInfo[] = [] | |
24 | let videoUUID: string | |
25 | ||
26 | before(async function () { | |
27 | this.timeout(120000) | |
28 | ||
29 | const configOverride = { | |
30 | transcoding: { | |
31 | enabled: true, | |
32 | resolutions: { | |
33 | '0p': true, | |
34 | '240p': true, | |
35 | '360p': false, | |
36 | '480p': false, | |
37 | '720p': false, | |
38 | '1080p': false, | |
39 | '2160p': false | |
40 | }, | |
41 | hls: { | |
42 | enabled: true | |
43 | }, | |
44 | webtorrent: { | |
45 | enabled: true | |
46 | } | |
47 | } | |
48 | } | |
49 | servers = await flushAndRunMultipleServers(2, configOverride) | |
50 | ||
51 | // Get the access tokens | |
52 | await setAccessTokensToServers(servers) | |
53 | ||
54 | // Server 1 and server 2 follow each other | |
55 | await doubleFollow(servers[0], servers[1]) | |
56 | }) | |
57 | ||
58 | it('Should upload a video and transcode it', async function () { | |
59 | this.timeout(120000) | |
60 | ||
66a36740 | 61 | const resUpload = await uploadVideo(servers[0].url, servers[0].accessToken, { name: 'audio only' }) |
3a149e9f C |
62 | videoUUID = resUpload.body.video.uuid |
63 | ||
64 | await waitJobs(servers) | |
65 | ||
66 | for (const server of servers) { | |
67 | const res = await getVideo(server.url, videoUUID) | |
68 | const video: VideoDetails = res.body | |
69 | ||
70 | expect(video.streamingPlaylists).to.have.lengthOf(1) | |
71 | ||
72 | for (const files of [ video.files, video.streamingPlaylists[0].files ]) { | |
73 | expect(files).to.have.lengthOf(3) | |
74 | expect(files[0].resolution.id).to.equal(720) | |
75 | expect(files[1].resolution.id).to.equal(240) | |
76 | expect(files[2].resolution.id).to.equal(0) | |
77 | } | |
78 | } | |
79 | }) | |
80 | ||
81 | it('0p transcoded video should not have video', async function () { | |
82 | const paths = [ | |
ca5c612b C |
83 | buildServerDirectory(servers[0], join('videos', videoUUID + '-0.mp4')), |
84 | buildServerDirectory(servers[0], join('streaming-playlists', 'hls', videoUUID, videoUUID + '-0-fragmented.mp4')) | |
3a149e9f C |
85 | ] |
86 | ||
87 | for (const path of paths) { | |
daf6e480 | 88 | const { audioStream } = await getAudioStream(path) |
a1587156 C |
89 | expect(audioStream['codec_name']).to.be.equal('aac') |
90 | expect(audioStream['bit_rate']).to.be.at.most(384 * 8000) | |
3a149e9f | 91 | |
52201311 | 92 | const size = await getVideoStreamSize(path) |
3a149e9f C |
93 | expect(size.height).to.equal(0) |
94 | expect(size.width).to.equal(0) | |
95 | } | |
96 | }) | |
97 | ||
98 | after(async function () { | |
99 | await cleanupTests(servers) | |
100 | }) | |
101 | }) |