[PR #2] [MERGED] Implemented Video Upload and Player #8429

Closed
opened 2026-02-05 13:47:01 +03:00 by OVERLORD · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/immich-app/immich/pull/2
Author: @alextran1502
Created: 2/6/2022
Status: Merged
Merged: 2/6/2022
Merged by: @alextran1502

Base: mainHead: immich-1/video-upload


📝 Commits (10+)

  • 0020c7b Implementing video upload features
  • 1686760 setup image resize processor
  • d546c35 Added video player in group display, will move to thumbnail for better performance
  • 69ed287 Add video thumbnail with duration and icon
  • ca0feb8 Fixed issue with video upload timeout and upper case file type on ios
  • 00830f8 Added video player page
  • f53b82d Added video player page
  • c564bab Fixing video player not play on ios
  • 4d1c770 Added partial file streaming for ios/android video request
  • bddc3d9 Added nginx as proxy server for better file serving

📊 Changes

32 files changed (+581 additions, -177 deletions)

View changed files

📝 mobile/android/app/src/main/AndroidManifest.xml (+1 -0)
mobile/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java (+20 -0)
📝 mobile/ios/Podfile.lock (+12 -0)
📝 mobile/ios/Runner/Info.plist (+15 -2)
📝 mobile/lib/main.dart (+9 -0)
📝 mobile/lib/modules/home/ui/image_grid.dart (+32 -5)
📝 mobile/lib/modules/home/ui/immich_sliver_appbar.dart (+0 -9)
📝 mobile/lib/modules/home/ui/thumbnail_image.dart (+25 -10)
📝 mobile/lib/modules/home/views/home_page.dart (+13 -57)
📝 mobile/lib/modules/login/ui/login_form.dart (+1 -1)
📝 mobile/lib/routing/router.dart (+2 -0)
📝 mobile/lib/routing/router.gr.dart (+33 -1)
📝 mobile/lib/shared/models/immich_asset.model.dart (+17 -33)
📝 mobile/lib/shared/providers/backup.provider.dart (+2 -2)
📝 mobile/lib/shared/services/backup.service.dart (+8 -5)
mobile/lib/shared/views/video_viewer_page.dart (+105 -0)
📝 mobile/lib/utils/files_helper.dart (+3 -1)
📝 mobile/pubspec.lock (+92 -1)
📝 mobile/pubspec.yaml (+2 -0)
📝 server/.dockerignore (+2 -1)

...and 12 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/immich-app/immich/pull/2 **Author:** [@alextran1502](https://github.com/alextran1502) **Created:** 2/6/2022 **Status:** ✅ Merged **Merged:** 2/6/2022 **Merged by:** [@alextran1502](https://github.com/alextran1502) **Base:** `main` ← **Head:** `immich-1/video-upload` --- ### 📝 Commits (10+) - [`0020c7b`](https://github.com/immich-app/immich/commit/0020c7be94d0096c0c0ec1574a7905fed44fcaa4) Implementing video upload features - [`1686760`](https://github.com/immich-app/immich/commit/168676075ff36d070b441b10d713ca535d910a53) setup image resize processor - [`d546c35`](https://github.com/immich-app/immich/commit/d546c35e3f409e9d816f82449a0e917e92f09ded) Added video player in group display, will move to thumbnail for better performance - [`69ed287`](https://github.com/immich-app/immich/commit/69ed2879747cd01c22461e3cc24f5d12226e22cb) Add video thumbnail with duration and icon - [`ca0feb8`](https://github.com/immich-app/immich/commit/ca0feb8c8d2d7e6dc725bfb0e7826babb04fba28) Fixed issue with video upload timeout and upper case file type on ios - [`00830f8`](https://github.com/immich-app/immich/commit/00830f8a05b6b649d8ca47225dd03904c6eff1e3) Added video player page - [`f53b82d`](https://github.com/immich-app/immich/commit/f53b82de201d47d84d7c9aa5e5ffc38400978955) Added video player page - [`c564bab`](https://github.com/immich-app/immich/commit/c564bab4e86abd81905dd77795fad968bbcb8ef3) Fixing video player not play on ios - [`4d1c770`](https://github.com/immich-app/immich/commit/4d1c7702f44233ecfb602d01845c7a8b9b36599b) Added partial file streaming for ios/android video request - [`bddc3d9`](https://github.com/immich-app/immich/commit/bddc3d97a6bf2f292b97432551696358e799e5cb) Added nginx as proxy server for better file serving ### 📊 Changes **32 files changed** (+581 additions, -177 deletions) <details> <summary>View changed files</summary> 📝 `mobile/android/app/src/main/AndroidManifest.xml` (+1 -0) ➕ `mobile/android/app/src/main/java/io/flutter/app/FlutterMultiDexApplication.java` (+20 -0) 📝 `mobile/ios/Podfile.lock` (+12 -0) 📝 `mobile/ios/Runner/Info.plist` (+15 -2) 📝 `mobile/lib/main.dart` (+9 -0) 📝 `mobile/lib/modules/home/ui/image_grid.dart` (+32 -5) 📝 `mobile/lib/modules/home/ui/immich_sliver_appbar.dart` (+0 -9) 📝 `mobile/lib/modules/home/ui/thumbnail_image.dart` (+25 -10) 📝 `mobile/lib/modules/home/views/home_page.dart` (+13 -57) 📝 `mobile/lib/modules/login/ui/login_form.dart` (+1 -1) 📝 `mobile/lib/routing/router.dart` (+2 -0) 📝 `mobile/lib/routing/router.gr.dart` (+33 -1) 📝 `mobile/lib/shared/models/immich_asset.model.dart` (+17 -33) 📝 `mobile/lib/shared/providers/backup.provider.dart` (+2 -2) 📝 `mobile/lib/shared/services/backup.service.dart` (+8 -5) ➕ `mobile/lib/shared/views/video_viewer_page.dart` (+105 -0) 📝 `mobile/lib/utils/files_helper.dart` (+3 -1) 📝 `mobile/pubspec.lock` (+92 -1) 📝 `mobile/pubspec.yaml` (+2 -0) 📝 `server/.dockerignore` (+2 -1) _...and 12 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
OVERLORD added the pull-request label 2026-02-05 13:47:01 +03:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#8429