const playlistName = removeFragmentedMP4Ext(basename(file.fileUrl)) + '.m3u8'
const url = objectStorageBaseUrl
- ? `${objectStorageBaseUrl}hls_${videoUUID}/${playlistName}`
+ ? `${objectStorageBaseUrl}hls/${videoUUID}/${playlistName}`
: `${baseUrl}/static/streaming-playlists/hls/${videoUUID}/${playlistName}`
const subPlaylist = await server.streamingPlaylists.get({ url })
{
const baseUrlAndPath = objectStorageBaseUrl
- ? objectStorageBaseUrl + 'hls_' + videoUUID
+ ? objectStorageBaseUrl + 'hls/' + videoUUID
: baseUrl + '/static/streaming-playlists/hls/' + videoUUID
for (const resolution of resolutions) {
})
it('Should update the video', async function () {
- this.timeout(10000)
+ this.timeout(30000)
await servers[0].videos.update({ id: videoUUID, attributes: { name: 'video 1 updated' } })