aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests/plugins/plugin-transcoding.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/tests/plugins/plugin-transcoding.ts')
-rw-r--r--server/tests/plugins/plugin-transcoding.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/tests/plugins/plugin-transcoding.ts b/server/tests/plugins/plugin-transcoding.ts
index 90ef01b92..ecea21e69 100644
--- a/server/tests/plugins/plugin-transcoding.ts
+++ b/server/tests/plugins/plugin-transcoding.ts
@@ -203,10 +203,10 @@ describe('Test transcoding plugins', function () {
203 it('Should use the new vod encoders', async function () { 203 it('Should use the new vod encoders', async function () {
204 this.timeout(240000) 204 this.timeout(240000)
205 205
206 const videoUUID = (await uploadVideoAndGetId({ server, videoName: 'video' })).uuid 206 const videoUUID = (await uploadVideoAndGetId({ server, videoName: 'video', fixture: 'video_short_240p.mp4' })).uuid
207 await waitJobs([ server ]) 207 await waitJobs([ server ])
208 208
209 const path = buildServerDirectory(server, join('videos', videoUUID + '-720.mp4')) 209 const path = buildServerDirectory(server, join('videos', videoUUID + '-240.mp4'))
210 const audioProbe = await getAudioStream(path) 210 const audioProbe = await getAudioStream(path)
211 expect(audioProbe.audioStream.codec_name).to.equal('opus') 211 expect(audioProbe.audioStream.codec_name).to.equal('opus')
212 212