aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/tests
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-09-28 11:19:25 +0200
committerChocobozzz <me@florianbigard.com>2022-09-28 11:19:25 +0200
commit0d6843decdaecb4f726cba27fdb55fc164d00ba7 (patch)
treea7615cea5a2b461a6bf75a399a275c995c67cfcc /server/tests
parente15bc9dcd59ebb6102d1455450d2e8bbf9f49c27 (diff)
parent1593e0dd5c822d7f8d6b87048db5de4184c4f93c (diff)
downloadPeerTube-0d6843decdaecb4f726cba27fdb55fc164d00ba7.tar.gz
PeerTube-0d6843decdaecb4f726cba27fdb55fc164d00ba7.tar.zst
PeerTube-0d6843decdaecb4f726cba27fdb55fc164d00ba7.zip
Merge branch 'release/4.3.0' into develop
Diffstat (limited to 'server/tests')
-rw-r--r--server/tests/api/live/live.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/server/tests/api/live/live.ts b/server/tests/api/live/live.ts
index 885751285..c436f0f01 100644
--- a/server/tests/api/live/live.ts
+++ b/server/tests/api/live/live.ts
@@ -454,6 +454,18 @@ describe('Test live', function () {
454 await stopFfmpeg(ffmpegCommand) 454 await stopFfmpeg(ffmpegCommand)
455 }) 455 })
456 456
457 it('Should transcode audio only RTMP stream', async function () {
458 this.timeout(120000)
459
460 liveVideoId = await createLiveWrapper(false)
461
462 const ffmpegCommand = await commands[0].sendRTMPStreamInVideo({ videoId: liveVideoId, fixtureName: 'video_short_no_audio.mp4' })
463 await waitUntilLivePublishedOnAllServers(servers, liveVideoId)
464 await waitJobs(servers)
465
466 await stopFfmpeg(ffmpegCommand)
467 })
468
457 it('Should enable transcoding with some resolutions', async function () { 469 it('Should enable transcoding with some resolutions', async function () {
458 this.timeout(120000) 470 this.timeout(120000)
459 471