PeerTube/shared/models/videos/transcoding/video-transcoding-create.mo...

6 lines
178 B
TypeScript
Raw Normal View History

2021-11-18 07:35:08 -06:00
export interface VideoTranscodingCreate {
transcodingType: 'hls' | 'webtorrent' | 'web-video' // TODO: remove webtorrent in v7
2023-07-28 04:07:03 -05:00
forceTranscoding?: boolean // Default false
2021-11-18 07:35:08 -06:00
}