Added separate task queue for video streams to prevent ffmpeg overstressing the CPU. Fixed entity parent in scene REST API.

This commit is contained in:
DebaucheryLibrarian
2020-08-17 15:53:20 +02:00
parent b3435c97c3
commit e896d52968
9 changed files with 31 additions and 26 deletions

View File

@@ -20,10 +20,10 @@ function curateRelease(release, withMedia = false) {
id: release.entity.id,
name: release.entity.name,
slug: release.entity.slug,
parent: release.entity.parent && {
id: release.entity.parent.id,
name: release.entity.parent.name,
slug: release.entity.parent.slug,
parent: release.parent && {
id: release.parent.id,
name: release.parent.name,
slug: release.parent.slug,
},
},
actors: (release.actors || []).map(actor => ({