mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 18:29:27 +02:00
Fix audio transcoding with video only file
This commit is contained in:
parent
78a5dd9c69
commit
cbe2f36d93
5 changed files with 46 additions and 16 deletions
|
@ -103,18 +103,23 @@ interface BaseTranscodingPayload {
|
|||
|
||||
export interface HLSTranscodingPayload extends BaseTranscodingPayload {
|
||||
type: 'new-resolution-to-hls'
|
||||
isPortraitMode?: boolean
|
||||
resolution: VideoResolution
|
||||
copyCodecs: boolean
|
||||
|
||||
hasAudio: boolean
|
||||
isPortraitMode?: boolean
|
||||
|
||||
autoDeleteWebTorrentIfNeeded: boolean
|
||||
isMaxQuality: boolean
|
||||
}
|
||||
|
||||
export interface NewResolutionTranscodingPayload extends BaseTranscodingPayload {
|
||||
type: 'new-resolution-to-webtorrent'
|
||||
isPortraitMode?: boolean
|
||||
resolution: VideoResolution
|
||||
|
||||
hasAudio: boolean
|
||||
|
||||
isPortraitMode?: boolean
|
||||
}
|
||||
|
||||
export interface MergeAudioTranscodingPayload extends BaseTranscodingPayload {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue