fix gestor de contenido, wip reproductor y diseño

This commit is contained in:
Abraham
2026-01-12 16:36:47 -08:00
parent 1a1049b653
commit 854a0940ae
11 changed files with 159 additions and 222 deletions

View File

@@ -153,4 +153,9 @@ class MediaFileModel {
DateTime? get lastViewedAt => metadataJson?['last_viewed_at'] != null
? DateTime.tryParse(metadataJson!['last_viewed_at'])
: null;
// Poster information from metadata_json
String? get posterUrl => metadataJson?['poster_url'];
String? get posterFileName => metadataJson?['poster_file_name'];
int? get fileSizeBytesFromMetadata => metadataJson?['file_size_bytes'];
}