Don't display transcription message with a caption

This commit is contained in:
Chocobozzz 2024-07-15 09:55:17 +02:00
parent af73531e3a
commit 5f0f4ba7de
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
2 changed files with 5 additions and 1 deletions

View File

@ -173,7 +173,7 @@
<ng-template ngbNavContent>
<div class="captions">
<div class="alert pt-alert-primary" *ngIf="displayTranscriptionInfo && isTranscriptionEnabled()" i18n>
<div class="alert pt-alert-primary" *ngIf="displayTranscriptionInfo && isTranscriptionEnabled() && !hasCaptions()" i18n>
A subtitle will be automatically generated from your video.
</div>

View File

@ -430,6 +430,10 @@ export class VideoEditComponent implements OnInit, OnDestroy {
return this.serverConfig.videoTranscription.enabled
}
hasCaptions () {
return this.getExistingCaptions().length !== 0
}
// ---------------------------------------------------------------------------
resetField (name: string) {