Fix audio merge fps typo

This commit is contained in:
Chocobozzz
2026-07-10 14:22:33 +02:00
parent e1f7835ad6
commit 79cb9e23b5
4 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ import {
setAccessTokensToServers,
waitJobs
} from '@peertube/peertube-server-commands'
import { DEFAULT_AUDIO_RESOLUTION } from '@peertube/peertube-server/core/initializers/constants.js'
import { DEFAULT_AUDIO_MERGE_RESOLUTION } from '@peertube/peertube-server/core/initializers/constants.js'
import { checkDirectoryIsEmpty, checkTmpIsEmpty } from '@tests/shared/directories.js'
import { completeCheckHlsPlaylist } from '@tests/shared/streaming-playlists.js'
import { join } from 'path'
@@ -72,7 +72,7 @@ describe('Test HLS videos', function () {
servers,
videoUUID: uuid,
hlsOnly,
resolutions: [ DEFAULT_AUDIO_RESOLUTION, 360, 240 ],
resolutions: [ DEFAULT_AUDIO_MERGE_RESOLUTION, 360, 240 ],
objectStorageBaseUrl
})
})
@@ -12,7 +12,7 @@ import {
setAccessTokensToServers,
waitJobs
} from '@peertube/peertube-server-commands'
import { DEFAULT_AUDIO_RESOLUTION } from '@peertube/peertube-server/core/initializers/constants.js'
import { DEFAULT_AUDIO_MERGE_RESOLUTION } from '@peertube/peertube-server/core/initializers/constants.js'
import { checkDirectoryIsEmpty, checkTmpIsEmpty } from '@tests/shared/directories.js'
import { completeCheckHlsPlaylist } from '@tests/shared/streaming-playlists.js'
import { expect } from 'chai'
@@ -80,7 +80,7 @@ describe('Test HLS with audio and video splitted', function () {
videoUUID: uuid,
hlsOnly,
splittedAudio: true,
resolutions: [ DEFAULT_AUDIO_RESOLUTION, 360, 240 ],
resolutions: [ DEFAULT_AUDIO_MERGE_RESOLUTION, 360, 240 ],
objectStorageBaseUrl
})
})