Skip to content
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

Panasonic S5 IIx RW2 Raws show as pink noise #9336

Open
1 of 3 tasks
t3dc opened this issue May 8, 2024 · 2 comments
Open
1 of 3 tasks

Panasonic S5 IIx RW2 Raws show as pink noise #9336

t3dc opened this issue May 8, 2024 · 2 comments

Comments

@t3dc
Copy link

t3dc commented May 8, 2024

The bug

As discussed and described here, RW2 raw files shot on a Panasonic S5 IIx show up as pink noise.

Screenshot 2024-05-08 at 10 00 07 AM

The OS that Immich Server is running on

Debian 12.4 (aarch 64 / RPi 5)

Version of Immich Server

v1.103.1

Version of Immich Mobile App

v1.103.0 build 155

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

version: "3.8"

#
# 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}
    command: [ "start.sh", "immich" ]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - 2283:3001
    depends_on:
      - redis
      - database
    restart: always

  immich-microservices:
    container_name: immich_microservices
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.yml
    #   service: hwaccel
    command: [ "start.sh", "microservices" ]
    volumes:
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    depends_on:
      - redis
      - database
    restart: always

  immich-machine-learning:
    container_name: immich_machine_learning
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always

  redis:
    container_name: immich_redis
    image: redis:6.2-alpine@sha256:b6124ab2e45cc332e16398022a411d7e37181f21ff7874835e0180f56a09e82a
    restart: always

  database:
    container_name: immich_postgres
    image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
    env_file:
      - .env
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
    volumes:
      - pgdata:/var/lib/postgresql/data
    restart: always

volumes:
  pgdata:
  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=/media/ted/disk 5
UPLOAD_LOCATION=./storage

# 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
DB_PASSWORD=****

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

REDIS_HOSTNAME=immich_redis

Reproduction steps

1. Take lovely pictures using the Panasonic S5 IIx
2. Review them and determine they weren't as good as you thought
3. Upload the .RW2 Raw Files to Immich
4. Try to look at them in Immich

Relevant log output

No response

Additional information

May need a bit of coaching on the logs, but happy to provide. I assume I should monitor a log while uploading an RW2, but which docker container should I be watching? Where does ingest/thumbnail gen happen?

Thanks!

@mertalev
Copy link
Contributor

mertalev commented May 8, 2024

May need a bit of coaching on the logs, but happy to provide. I assume I should monitor a log while uploading an RW2, but which docker container should I be watching? Where does ingest/thumbnail gen happen?

The microservices container will have the relevant logs. But since it technically succeeds in generating a "preview", I'm afraid the logs won't be very interesting.

@Piston-Broke
Copy link

Piston-Broke commented May 25, 2024

Same results here with Panasonic GH6
opened a sample photo with photos on Win 10 with raw extension get a brief image then shows same pink noise

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants