PeerTube/server/tests/api/videos/audio-only.ts

104 lines
2.8 KiB
TypeScript
Raw Normal View History

2020-01-31 16:56:52 +01:00
/* eslint-disable @typescript-eslint/no-unused-expressions,@typescript-eslint/require-await */
2019-11-22 11:43:17 +01:00
import 'mocha'
2020-11-20 17:16:55 +01:00
import * as chai from 'chai'
import { getAudioStream, getVideoStreamSize } from '@server/helpers/ffprobe-utils'
import {
cleanupTests,
createMultipleServers,
doubleFollow,
PeerTubeServer,
setAccessTokensToServers,
waitJobs
} from '@shared/server-commands'
2019-11-22 11:43:17 +01:00
const expect = chai.expect
describe('Test audio only video transcoding', function () {
2021-07-16 09:47:51 +02:00
let servers: PeerTubeServer[] = []
2019-11-22 11:43:17 +01:00
let videoUUID: string
2021-07-22 14:28:03 +02:00
let webtorrentAudioFileUrl: string
let fragmentedAudioFileUrl: string
2019-11-22 11:43:17 +01:00
before(async function () {
this.timeout(120000)
const configOverride = {
transcoding: {
enabled: true,
resolutions: {
'0p': true,
'144p': false,
2019-11-22 11:43:17 +01:00
'240p': true,
'360p': false,
'480p': false,
'720p': false,
'1080p': false,
'1440p': false,
2019-11-22 11:43:17 +01:00
'2160p': false
},
hls: {
enabled: true
},
webtorrent: {
enabled: true
}
}
}
2021-07-16 09:47:51 +02:00
servers = await createMultipleServers(2, configOverride)
2019-11-22 11:43:17 +01:00
// Get the access tokens
await setAccessTokensToServers(servers)
// Server 1 and server 2 follow each other
await doubleFollow(servers[0], servers[1])
})
it('Should upload a video and transcode it', async function () {
this.timeout(120000)
2021-07-16 09:04:35 +02:00
const { uuid } = await servers[0].videos.upload({ attributes: { name: 'audio only' } })
2021-07-15 10:02:54 +02:00
videoUUID = uuid
2019-11-22 11:43:17 +01:00
await waitJobs(servers)
for (const server of servers) {
2021-07-16 09:04:35 +02:00
const video = await server.videos.get({ id: videoUUID })
2019-11-22 11:43:17 +01:00
expect(video.streamingPlaylists).to.have.lengthOf(1)
for (const files of [ video.files, video.streamingPlaylists[0].files ]) {
expect(files).to.have.lengthOf(3)
expect(files[0].resolution.id).to.equal(720)
expect(files[1].resolution.id).to.equal(240)
expect(files[2].resolution.id).to.equal(0)
}
2021-07-22 14:28:03 +02:00
if (server.serverNumber === 1) {
webtorrentAudioFileUrl = video.files[2].fileUrl
fragmentedAudioFileUrl = video.streamingPlaylists[0].files[2].fileUrl
}
2019-11-22 11:43:17 +01:00
}
})
it('0p transcoded video should not have video', async function () {
const paths = [
2021-07-22 14:28:03 +02:00
servers[0].servers.buildWebTorrentFilePath(webtorrentAudioFileUrl),
servers[0].servers.buildFragmentedFilePath(videoUUID, fragmentedAudioFileUrl)
2019-11-22 11:43:17 +01:00
]
for (const path of paths) {
2020-11-20 17:16:55 +01:00
const { audioStream } = await getAudioStream(path)
2020-01-31 16:56:52 +01:00
expect(audioStream['codec_name']).to.be.equal('aac')
expect(audioStream['bit_rate']).to.be.at.most(384 * 8000)
2019-11-22 11:43:17 +01:00
2019-11-26 16:25:36 +01:00
const size = await getVideoStreamSize(path)
2019-11-22 11:43:17 +01:00
expect(size.height).to.equal(0)
expect(size.width).to.equal(0)
}
})
after(async function () {
await cleanupTests(servers)
})
})