mirror of
				https://github.com/immich-app/immich.git
				synced 2025-10-31 02:27:08 -04:00 
			
		
		
		
	* Implementing video upload features * setup image resize processor * Add video thumbnail with duration and icon * Fixed issue with video upload timeout and upper case file type on ios * Added video player page * Added video player page * Fixing video player not play on ios * Added partial file streaming for ios/android video request * Added nginx as proxy server for better file serving * update nginx and docker-compose file * Video player working correctly * Video player working correctly * Split duration to the second
		
			
				
	
	
		
			116 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Dart
		
	
	
	
	
	
| import 'dart:convert';
 | |
| 
 | |
| class ImmichAsset {
 | |
|   final String id;
 | |
|   final String deviceAssetId;
 | |
|   final String userId;
 | |
|   final String deviceId;
 | |
|   final String type;
 | |
|   final String createdAt;
 | |
|   final String modifiedAt;
 | |
|   final bool isFavorite;
 | |
|   final String? duration;
 | |
| 
 | |
|   ImmichAsset({
 | |
|     required this.id,
 | |
|     required this.deviceAssetId,
 | |
|     required this.userId,
 | |
|     required this.deviceId,
 | |
|     required this.type,
 | |
|     required this.createdAt,
 | |
|     required this.modifiedAt,
 | |
|     required this.isFavorite,
 | |
|     this.duration,
 | |
|   });
 | |
| 
 | |
|   ImmichAsset copyWith({
 | |
|     String? id,
 | |
|     String? deviceAssetId,
 | |
|     String? userId,
 | |
|     String? deviceId,
 | |
|     String? type,
 | |
|     String? createdAt,
 | |
|     String? modifiedAt,
 | |
|     bool? isFavorite,
 | |
|     String? duration,
 | |
|   }) {
 | |
|     return ImmichAsset(
 | |
|       id: id ?? this.id,
 | |
|       deviceAssetId: deviceAssetId ?? this.deviceAssetId,
 | |
|       userId: userId ?? this.userId,
 | |
|       deviceId: deviceId ?? this.deviceId,
 | |
|       type: type ?? this.type,
 | |
|       createdAt: createdAt ?? this.createdAt,
 | |
|       modifiedAt: modifiedAt ?? this.modifiedAt,
 | |
|       isFavorite: isFavorite ?? this.isFavorite,
 | |
|       duration: duration ?? this.duration,
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   Map<String, dynamic> toMap() {
 | |
|     return {
 | |
|       'id': id,
 | |
|       'deviceAssetId': deviceAssetId,
 | |
|       'userId': userId,
 | |
|       'deviceId': deviceId,
 | |
|       'type': type,
 | |
|       'createdAt': createdAt,
 | |
|       'modifiedAt': modifiedAt,
 | |
|       'isFavorite': isFavorite,
 | |
|       'duration': duration,
 | |
|     };
 | |
|   }
 | |
| 
 | |
|   factory ImmichAsset.fromMap(Map<String, dynamic> map) {
 | |
|     return ImmichAsset(
 | |
|       id: map['id'] ?? '',
 | |
|       deviceAssetId: map['deviceAssetId'] ?? '',
 | |
|       userId: map['userId'] ?? '',
 | |
|       deviceId: map['deviceId'] ?? '',
 | |
|       type: map['type'] ?? '',
 | |
|       createdAt: map['createdAt'] ?? '',
 | |
|       modifiedAt: map['modifiedAt'] ?? '',
 | |
|       isFavorite: map['isFavorite'] ?? false,
 | |
|       duration: map['duration'],
 | |
|     );
 | |
|   }
 | |
| 
 | |
|   String toJson() => json.encode(toMap());
 | |
| 
 | |
|   factory ImmichAsset.fromJson(String source) => ImmichAsset.fromMap(json.decode(source));
 | |
| 
 | |
|   @override
 | |
|   String toString() {
 | |
|     return 'ImmichAsset(id: $id, deviceAssetId: $deviceAssetId, userId: $userId, deviceId: $deviceId, type: $type, createdAt: $createdAt, modifiedAt: $modifiedAt, isFavorite: $isFavorite, duration: $duration)';
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   bool operator ==(Object other) {
 | |
|     if (identical(this, other)) return true;
 | |
| 
 | |
|     return other is ImmichAsset &&
 | |
|         other.id == id &&
 | |
|         other.deviceAssetId == deviceAssetId &&
 | |
|         other.userId == userId &&
 | |
|         other.deviceId == deviceId &&
 | |
|         other.type == type &&
 | |
|         other.createdAt == createdAt &&
 | |
|         other.modifiedAt == modifiedAt &&
 | |
|         other.isFavorite == isFavorite &&
 | |
|         other.duration == duration;
 | |
|   }
 | |
| 
 | |
|   @override
 | |
|   int get hashCode {
 | |
|     return id.hashCode ^
 | |
|         deviceAssetId.hashCode ^
 | |
|         userId.hashCode ^
 | |
|         deviceId.hashCode ^
 | |
|         type.hashCode ^
 | |
|         createdAt.hashCode ^
 | |
|         modifiedAt.hashCode ^
 | |
|         isFavorite.hashCode ^
 | |
|         duration.hashCode;
 | |
|   }
 | |
| }
 |