Back to Peertube

Video Attributes.Component

client/src/app/+video-watch/shared/metadata/video-attributes.component.html

8.1.51013 B
Original Source

Privacy{{ video().privacy.label }} @if (video().isLocal === false) { Origin{{ video().originInstanceHost }} } @if (!!video().inputFileUpdatedAt) { Video re-upload{{ video().inputFileUpdatedAt | ptDate: 'short' }} } @if (!!video().originallyPublishedAt) { Originally published{{ video().originallyPublishedAt | ptDate: 'shortDate' }} } Category @if (!video().category.id) { {{ video().category.label }} } @if (video().category.id) { {{ video().category.label }} }

Licence @if (!video().licence.id) { {{ video().licence.label }} } @if (video().licence.id) { {{ video().licence.label }} }

Language @if (!video().language.id) { {{ video().language.label }} } @if (video().language.id) { {{ video().language.label }} }

Tags @for (tag of getVideoTags(); track tag) { {{ tag }} } @if (!video().isLive) { Duration{{ video().duration | myTimeDurationFormatter }} } @for (metadata of pluginMetadata; track metadata) { {{ metadata.label }} @if (metadata.value) { {{ metadata.value }} } @if (metadata.safeHTML) { } }