diff options
author | Chocobozzz <me@florianbigard.com> | 2023-08-17 08:59:21 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2023-08-17 08:59:21 +0200 |
commit | c380e3928517eb5311b38cf257816642617d7a33 (patch) | |
tree | 2ea9b70ebca16b5d109bcce98fe7f944dad89319 /packages/models/src/videos/transcoding/video-transcoding.model.ts | |
parent | a8ca6190fb462bf6eb5685cfc1d8ae444164a487 (diff) | |
parent | 3a4992633ee62d5edfbb484d9c6bcb3cf158489d (diff) | |
download | PeerTube-c380e3928517eb5311b38cf257816642617d7a33.tar.gz PeerTube-c380e3928517eb5311b38cf257816642617d7a33.tar.zst PeerTube-c380e3928517eb5311b38cf257816642617d7a33.zip |
Merge branch 'feature/esm-and-nx' into develop
Diffstat (limited to 'packages/models/src/videos/transcoding/video-transcoding.model.ts')
-rw-r--r-- | packages/models/src/videos/transcoding/video-transcoding.model.ts | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/packages/models/src/videos/transcoding/video-transcoding.model.ts b/packages/models/src/videos/transcoding/video-transcoding.model.ts new file mode 100644 index 000000000..e2c2a56e5 --- /dev/null +++ b/packages/models/src/videos/transcoding/video-transcoding.model.ts | |||
@@ -0,0 +1,65 @@ | |||
1 | // Types used by plugins and ffmpeg-utils | ||
2 | |||
3 | export type EncoderOptionsBuilderParams = { | ||
4 | input: string | ||
5 | |||
6 | resolution: number | ||
7 | |||
8 | // If PeerTube applies a filter, transcoding profile must not copy input stream | ||
9 | canCopyAudio: boolean | ||
10 | canCopyVideo: boolean | ||
11 | |||
12 | fps: number | ||
13 | |||
14 | // Could be undefined if we could not get input bitrate (some RTMP streams for example) | ||
15 | inputBitrate: number | ||
16 | inputRatio: number | ||
17 | |||
18 | // For lives | ||
19 | streamNum?: number | ||
20 | } | ||
21 | |||
22 | export type EncoderOptionsBuilder = (params: EncoderOptionsBuilderParams) => Promise<EncoderOptions> | EncoderOptions | ||
23 | |||
24 | export interface EncoderOptions { | ||
25 | copy?: boolean // Copy stream? Default to false | ||
26 | |||
27 | scaleFilter?: { | ||
28 | name: string | ||
29 | } | ||
30 | |||
31 | inputOptions?: string[] | ||
32 | outputOptions?: string[] | ||
33 | } | ||
34 | |||
35 | // All our encoders | ||
36 | |||
37 | export interface EncoderProfile <T> { | ||
38 | [ profile: string ]: T | ||
39 | |||
40 | default: T | ||
41 | } | ||
42 | |||
43 | export type AvailableEncoders = { | ||
44 | available: { | ||
45 | live: { | ||
46 | [ encoder: string ]: EncoderProfile<EncoderOptionsBuilder> | ||
47 | } | ||
48 | |||
49 | vod: { | ||
50 | [ encoder: string ]: EncoderProfile<EncoderOptionsBuilder> | ||
51 | } | ||
52 | } | ||
53 | |||
54 | encodersToTry: { | ||
55 | vod: { | ||
56 | video: string[] | ||
57 | audio: string[] | ||
58 | } | ||
59 | |||
60 | live: { | ||
61 | video: string[] | ||
62 | audio: string[] | ||
63 | } | ||
64 | } | ||
65 | } | ||