mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-05 19:42:24 +02:00
Basic video redundancy implementation
This commit is contained in:
parent
a651038487
commit
c48e82b5e0
77 changed files with 1667 additions and 287 deletions
1
shared/models/redundancy/index.ts
Normal file
1
shared/models/redundancy/index.ts
Normal file
|
@ -0,0 +1 @@
|
|||
export * from './videos-redundancy.model'
|
6
shared/models/redundancy/videos-redundancy.model.ts
Normal file
6
shared/models/redundancy/videos-redundancy.model.ts
Normal file
|
@ -0,0 +1,6 @@
|
|||
export type VideoRedundancyStrategy = 'most-views'
|
||||
|
||||
export interface VideosRedundancy {
|
||||
strategy: VideoRedundancyStrategy
|
||||
size: number
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue