Skip to content

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

heif: Error while loading plugin: No decoding plugin installed for this compression format (11.6003) #12205

Closed
1 of 3 tasks
2600box opened this issue Sep 1, 2024 · 1 comment

Comments

@2600box
Copy link

2600box commented Sep 1, 2024

The bug

Thumbnails are not created for .HEIC files from my iPhone.

[Nest] 10884  - 08/31/2024, 3:47:21 PM   ERROR [Microservices:JobService] Object:
{
  "id": "250701e7-19b9-4349-b853-6d88882f78f4",
  "source": "upload"
}

[Nest] 10884  - 08/31/2024, 3:47:21 PM   ERROR [Microservices:JobService] Unable to run job handler (thumbnailGeneration/generate-preview): Error: upload/upload/3e81cce2-136a-4a66-9b20-4c6abdc30da2/de/30/de3035c5-56f6-4302-9f96-9ca897cccfb8.HEIC: bad seek to 1102369
heif: Error while loading plugin: No decoding plugin installed for this compression format (11.6003)
[Nest] 10884  - 08/31/2024, 3:47:21 PM   ERROR [Microservices:JobService] Error: upload/upload/3e81cce2-136a-4a66-9b20-4c6abdc30da2/de/30/de3035c5-56f6-4302-9f96-9ca897cccfb8.HEIC: bad seek to 1102369
heif: Error while loading plugin: No decoding plugin installed for this compression format (11.6003)
    at Sharp.toFile (/home/immich/app/node_modules/sharp/lib/output.js:90:19)
    at MediaRepository.generateThumbnail (/home/immich/app/dist/repositories/media.repository.js:69:14)
    at MediaService.generateThumbnail (/home/immich/app/dist/services/media.service.js:176:48)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async MediaService.handleGeneratePreview (/home/immich/app/dist/services/media.service.js:141:29)
    at async /home/immich/app/dist/services/job.service.js:148:36
    at async Worker.processJob (/home/immich/app/node_modules/bullmq/dist/cjs/classes/worker.js:394:28)
    at async Worker.retryIfFailed (/home/immich/app/node_modules/bullmq/dist/cjs/classes/worker.js:581:24)

I am running iOS 18, which was particularly relevant in this now closed issue: #10464

The OS that Immich Server is running on

Ubuntu 24.04.1 LTS

Version of Immich Server

v1.113.0

Version of Immich Mobile App

v1.113.0

Platform with the issue

  • Server
  • Web
  • Mobile
docker-compose.yml and .env content
#
# WARNING: Make sure to use the docker-compose.yml of the current release:
#
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
#
# The compose file on main may not be compatible with the latest release.
#

name: immich

services:
  immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false

  immich-machine-learning:
    container_name: immich_machine_learning
    # For hardware acceleration, add one of -[armnn, cuda, openvino] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/redis:6.2-alpine@sha256:e3b17ba9479deec4b7d1eeec1548a253acc5374d68d3b27937fcfe4df8d18c7e
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    healthcheck:
      test: pg_isready --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' || exit 1; Chksum="$$(psql --dbname='${DB_DATABASE_NAME}' --username='${DB_USERNAME}' --tuples-only --no-align --command='SELECT COALESCE(SUM(checksum_failures), 0) FROM pg_stat_database')"; echo "checksum failure count is $$Chksum"; [ "$$Chksum" = '0' ] || exit 1
      interval: 5m
      start_interval: 30s
      start_period: 5m
    command: ["postgres", "-c", "shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
    restart: always

volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=./library
# The location where your database files are stored
DB_DATA_LOCATION=./postgres

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
# TZ=Etc/UTC

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=release

# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=postgres

# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Reproduction steps

  1. Initiate backup from iPhone running iOS 18 beta
  2. Notice that thumbnails are not generated
  3. Check the log and see the repeated error: heif: Error while loading plugin: No decoding plugin installed for this compression format (11.6003)

Relevant log output

[Nest] 10884  - 08/31/2024, 3:47:21 PM   ERROR [Microservices:JobService] Object:
{
  "id": "250701e7-19b9-4349-b853-6d88882f78f4",
  "source": "upload"
}

[Nest] 10884  - 08/31/2024, 3:47:21 PM   ERROR [Microservices:JobService] Unable to run job handler (thumbnailGeneration/generate-preview): Error: upload/upload/3e81cce2-136a-4a66-9b20-4c6abdc30da2/de/30/de3035c5-56f6-4302-9f96-9ca897cccfb8.HEIC: bad seek to 1102369
heif: Error while loading plugin: No decoding plugin installed for this compression format (11.6003)
[Nest] 10884  - 08/31/2024, 3:47:21 PM   ERROR [Microservices:JobService] Error: upload/upload/3e81cce2-136a-4a66-9b20-4c6abdc30da2/de/30/de3035c5-56f6-4302-9f96-9ca897cccfb8.HEIC: bad seek to 1102369
heif: Error while loading plugin: No decoding plugin installed for this compression format (11.6003)
    at Sharp.toFile (/home/immich/app/node_modules/sharp/lib/output.js:90:19)
    at MediaRepository.generateThumbnail (/home/immich/app/dist/repositories/media.repository.js:69:14)
    at MediaService.generateThumbnail (/home/immich/app/dist/services/media.service.js:176:48)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async MediaService.handleGeneratePreview (/home/immich/app/dist/services/media.service.js:141:29)
    at async /home/immich/app/dist/services/job.service.js:148:36
    at async Worker.processJob (/home/immich/app/node_modules/bullmq/dist/cjs/classes/worker.js:394:28)
    at async Worker.retryIfFailed (/home/immich/app/node_modules/bullmq/dist/cjs/classes/worker.js:581:24)

Additional information

The issue is not resolved by manually trigged the thumbnail generation task.

In this example, the photo is not a Live Photo or video, but looks like it might be HDR?

More details in expansion below:

mediainfo and exif data

exif:

ExifTool Version Number         : 12.76
File Name                       : IMG_0692.HEIC
Directory                       : /Users/2600box/Downloads
File Size                       : 649 kB
File Modification Date/Time     : 2024:09:01 10:53:11+02:00
File Access Date/Time           : 2024:09:01 10:54:24+02:00
File Inode Change Date/Time     : 2024:09:01 10:54:23+02:00
File Permissions                : -rw-r--r--
File Type                       : HEIC
File Type Extension             : heic
MIME Type                       : image/heic
Major Brand                     : High Efficiency Image Format HEVC still image (.HEIC)
Minor Version                   : 0.0.0
Compatible Brands               : mif1, MiHE, MiPr, miaf, MiHB, heic
Handler Type                    : Picture
Primary Item Reference          : 49
Meta Image Size                 : 4032x3024 0 515 2016 1512
XMP Toolkit                     : XMP Core 6.0.0
HDR Gain Map Version            : 65536
Exif Byte Order                 : Big-endian (Motorola, MM)
Make                            : Apple
Camera Model Name               : iPhone 14 Pro
Orientation                     : Rotate 180
X Resolution                    : 72
Y Resolution                    : 72
Resolution Unit                 : inches
Software                        : 18.0
Modify Date                     : 2024:08:30 10:56:11
Host Computer                   : iPhone 14 Pro
Exposure Time                   : 1/25
F Number                        : 2.2
Exposure Program                : Program AE
ISO                             : 1250
Exif Version                    : 0232
Date/Time Original              : 2024:08:30 10:56:11
Create Date                     : 2024:08:30 10:56:11
Offset Time                     : +02:00
Offset Time Original            : +02:00
Offset Time Digitized           : +02:00
Shutter Speed Value             : 1/25
Aperture Value                  : 2.2
Brightness Value                : -2.68929156
Exposure Compensation           : 0
Metering Mode                   : Multi-segment
Flash                           : Off, Did not fire
Focal Length                    : 2.2 mm
Subject Area                    : 2012 1511 2217 1330
Maker Note Version              : 15
Run Time Flags                  : Valid
Run Time Value                  : 136197424026041
Run Time Scale                  : 1000000000
Run Time Epoch                  : 0
AE Stable                       : Yes
AE Target                       : 88
AE Average                      : 59
AF Stable                       : Yes
Acceleration Vector             : 0.966255009 0.02191266976 -0.2229064107
Image Capture Type              : Unknown (12)
Live Photo Video Index          : 4235268
HDR Headroom                    : 0.7432090045
Signal To Noise Ratio           : 14.66210747
Photo Identifier                : E5B13C1B-4B6D-4152-9514-D94A482DC72C
Focus Position                  : 36
HDR Gain                        : 1.252605443e-06
AF Measured Depth               : 71
AF Confidence                   : 35
Semantic Style                  : {_0=1,_1=0,_2=0,_3=0}
Front Facing Camera             : No
Sub Sec Time Original           : 431
Sub Sec Time Digitized          : 431
Color Space                     : Uncalibrated
Exif Image Width                : 4032
Exif Image Height               : 3024
Sensing Method                  : One-chip color area
Scene Type                      : Directly photographed
Exposure Mode                   : Auto
White Balance                   : Auto
Focal Length In 35mm Format     : 14 mm
Lens Info                       : 2.22-9mm f/1.779999971-2.8
Lens Make                       : Apple
Lens Model                      : iPhone 14 Pro back triple camera 2.22mm f/2.2
Composite Image                 : General Composite Image
GPS Latitude Ref                : North
GPS Longitude Ref               : East
GPS Altitude Ref                : Above Sea Level
GPS Time Stamp                  : 08:56:07.79
GPS Speed Ref                   : km/h
GPS Speed                       : 0
GPS Img Direction Ref           : True North
GPS Img Direction               : 202.2246704
GPS Dest Bearing Ref            : True North
GPS Dest Bearing                : 202.2246704
GPS Date Stamp                  : 2024:08:30
GPS Horizontal Positioning Error: 15.88423713 m
Profile CMM Type                : Apple Computer Inc.
Profile Version                 : 4.0.0
Profile Class                   : Display Device Profile
Color Space Data                : RGB
Profile Connection Space        : XYZ
Profile Date Time               : 2022:01:01 00:00:00
Profile File Signature          : acsp
Primary Platform                : Apple Computer Inc.
CMM Flags                       : Not Embedded, Independent
Device Manufacturer             : Apple Computer Inc.
Device Model                    : 
Device Attributes               : Reflective, Glossy, Positive, Color
Rendering Intent                : Perceptual
Connection Space Illuminant     : 0.9642 1 0.82491
Profile Creator                 : Apple Computer Inc.
Profile ID                      : ecfda38e388547c36db4bd4f7ada182f
Profile Description             : Display P3
Profile Copyright               : Copyright Apple Inc., 2022
Media White Point               : 0.96419 1 0.82489
Red Matrix Column               : 0.51512 0.2412 -0.00105
Green Matrix Column             : 0.29198 0.69225 0.04189
Blue Matrix Column              : 0.1571 0.06657 0.78407
Red Tone Reproduction Curve     : (Binary data 32 bytes, use -b option to extract)
Chromatic Adaptation            : 1.04788 0.02292 -0.0502 0.02959 0.99048 -0.01706 -0.00923 0.01508 0.75168
Blue Tone Reproduction Curve    : (Binary data 32 bytes, use -b option to extract)
Green Tone Reproduction Curve   : (Binary data 32 bytes, use -b option to extract)
Image Width                     : 4032
Image Height                    : 3024
Image Spatial Extent            : 4032x3024
Rotation                        : 180
Image Pixel Depth               : 8 8 8
Auxiliary Image Type            : urn:com:apple:photo:2020:aux:hdrgainmap
HEVC Configuration Version      : 1
General Profile Space           : Conforming
General Tier Flag               : Main Tier
General Profile IDC             : Main Still Picture
Gen Profile Compatibility Flags : Main Still Picture, Main 10, Main
Constraint Indicator Flags      : 176 0 0 0 0 0
General Level IDC               : 60 (level 2.0)
Min Spatial Segmentation IDC    : 0
Parallelism Type                : 0
Chroma Format                   : 4:2:0
Bit Depth Luma                  : 8
Bit Depth Chroma                : 8
Average Frame Rate              : 0
Constant Frame Rate             : Unknown
Num Temporal Layers             : 1
Temporal ID Nested              : No
Media Data Size                 : 643848
Media Data Offset               : 5231
Run Time Since Power Up         : 1 days 13:49:57
Aperture                        : 2.2
Image Size                      : 4032x3024
Megapixels                      : 12.2
Scale Factor To 35 mm Equivalent: 6.3
Shutter Speed                   : 1/25
Create Date                     : 2024:08:30 10:56:11.431+02:00
Date/Time Original              : 2024:08:30 10:56:11.431+02:00
Modify Date                     : 2024:08:30 10:56:11+02:00
GPS Altitude                    : 594.4 m Above Sea Level
GPS Date/Time                   : 2024:08:30 08:56:07.79Z
GPS Latitude                    : <SNIP>
GPS Longitude                   : <SNIP>
Circle Of Confusion             : 0.005 mm
Field Of View                   : 104.3 deg
Focal Length                    : 2.2 mm (35 mm equivalent: 14.0 mm)
GPS Position                    : <SNIP>
Hyperfocal Distance             : 0.47 m
Light Value                     : 3.3
Lens ID                         : iPhone 14 Pro back triple camera 2.22mm f/2.2

mediainfo:

General
Complete name                            : /Users/2600box/Downloads/IMG_0692.HEIC
Format                                   : heic
Codec ID                                 : heic (mif1/MiHE/MiPr/miaf/MiHB/heic)
File size                                : 634 KiB

Image #1
ID                                       : 1
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 4.74 KiB (1%)
Default                                  : No
Color range                              : Full
ColorSpace_ICC                           : RGB
Derived                                  : 49
Codec configuration box                  : hvcC

Image #2
ID                                       : 2
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 3.77 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #3
ID                                       : 3
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 9.63 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #4
ID                                       : 4
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 11.5 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #5
ID                                       : 5
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 11.5 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #6
ID                                       : 6
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 9.50 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #7
ID                                       : 7
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 8.87 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #8
ID                                       : 8
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 6.11 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #9
ID                                       : 9
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 9.56 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #10
ID                                       : 10
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 9.00 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #11
ID                                       : 11
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 11.8 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #12
ID                                       : 12
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 15.7 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #13
ID                                       : 13
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 17.6 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #14
ID                                       : 14
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 20.5 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #15
ID                                       : 15
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 16.9 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #16
ID                                       : 16
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 7.67 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #17
ID                                       : 17
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 11.5 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #18
ID                                       : 18
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 15.2 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #19
ID                                       : 19
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 18.7 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #20
ID                                       : 20
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 22.1 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #21
ID                                       : 21
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 19.0 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #22
ID                                       : 22
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 18.1 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #23
ID                                       : 23
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 18.3 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #24
ID                                       : 24
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 10.2 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #25
ID                                       : 25
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 11.6 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #26
ID                                       : 26
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 16.2 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #27
ID                                       : 27
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 18.0 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #28
ID                                       : 28
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 21.3 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #29
ID                                       : 29
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 15.7 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #30
ID                                       : 30
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 15.6 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #31
ID                                       : 31
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 14.7 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #32
ID                                       : 32
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 8.26 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #33
ID                                       : 33
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 10.2 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #34
ID                                       : 34
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 12.1 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #35
ID                                       : 35
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 17.8 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #36
ID                                       : 36
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 16.8 KiB (3%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #37
ID                                       : 37
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 15.6 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #38
ID                                       : 38
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 12.2 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #39
ID                                       : 39
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 10.5 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #40
ID                                       : 40
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 7.98 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #41
ID                                       : 41
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 7.98 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #42
ID                                       : 42
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 9.02 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #43
ID                                       : 43
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 10.2 KiB (2%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #44
ID                                       : 44
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 8.33 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #45
ID                                       : 45
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 8.40 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #46
ID                                       : 46
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 7.61 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #47
ID                                       : 47
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 5.55 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #48
ID                                       : 48
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Format Range@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : Y
Bit depth                                : 8 bits
Stream size                              : 6.19 KiB (1%)
Default                                  : No
Color range                              : Full
Derived                                  : 49
Codec configuration box                  : hvcC

Image #49
ID                                       : 49
Format                                   : Grid
Stream size                              : 8.00 Bytes (0%)
Auxilary                                 : 63
Derived for                              : 1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48
Describes                                : 65
Thumbnail                                : 50

Image #50
ID                                       : 50
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Main Still@L3@Main
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Width                                    : 512 pixels
Height                                   : 512 pixels
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Stream size                              : 8.41 KiB (1%)
Default                                  : No
Color range                              : Full
Color primaries                          : Display P3
Transfer characteristics                 : BT.709
Matrix coefficients                      : BT.601
Thumbnail for                            : 49
Codec configuration box                  : hvcC

Image #51
ID                                       : 51
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.08 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #52
ID                                       : 52
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.56 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #53
ID                                       : 53
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 2.17 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #54
ID                                       : 54
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.63 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #55
ID                                       : 55
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.10 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #56
ID                                       : 56
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 2.78 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #57
ID                                       : 57
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 3.47 KiB (1%)
Default                                  : No
Derived                                  : 63

Image #58
ID                                       : 58
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.86 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #59
ID                                       : 59
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.44 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #60
ID                                       : 60
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 2.07 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #61
ID                                       : 61
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.51 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #62
ID                                       : 62
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Codec ID                                 : hvc1
Codec ID/Info                            : High Efficiency Video Coding
Stream size                              : 1.33 KiB (0%)
Default                                  : No
Derived                                  : 63

Image #63
ID                                       : 63
Format                                   : HEVC
Format/Info                              : High Efficiency Video Coding
Format profile                           : Main Still@L2@Main
Width                                    : 2 016 pixels
Original width                           : 320 pixels
Height                                   : 1 512 pixels
Original height                          : 240 pixels
Color space                              : YUV
Chroma subsampling                       : 4:2:0
Bit depth                                : 8 bits
Stream size                              : 8.00 Bytes (0%)
Default                                  : No
Color range                              : Full
Color primaries                          : Display P3
Transfer characteristics                 : BT.709
Matrix coefficients                      : BT.601
Rotation                                 : -180° / -180° / -180°
Auxilary for                             : 49
Derived for                              : 51,52,53,54,55,56,57,58,59,60,61,62
Describes                                : 64
Codec configuration box                  : hvcC
@alextran1502
Copy link
Contributor

I am also using iOS 18 Beta, I cannot reproduce this issue. Can you try to bring the stack down, then remove the images and repull them?

@immich-app immich-app locked and limited conversation to collaborators Sep 2, 2024
@alextran1502 alextran1502 converted this issue into discussion #12241 Sep 2, 2024

This issue was moved to a discussion.

You can continue the conversation there. Go to discussion →

Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants