immich/server
Zack Pollard 4e0fe27de3
feat(server): transcoding improvements (#1370)
* feat: support isEdited flag for SettingSwitch

* feat: add transcodeAll ffmpeg settings for extra transcoding control

* refactor: tidy up and rename current video transcoding code + transcode everything

* feat: better video transcoding with ffprobe

analyses video files to see if they are already in the desired format
allows admin to choose to transcode all videos regardless of the current format

* fix: always serve encoded video if it exists

* feat: change video codec option to a select box, limit options

removed previous video codec config option as it's incompatible with new options
removed mapping for encoder to codec as we now store the codec in the config

* feat: add video conversion job for transcoding previously missed videos

* chore: fix spelling of job messages to pluralise assets

* chore: fix prettier/eslint warnings

* feat: force switch targetAudioCodec default to aac to avoid iOS incompatibility

* chore: lint issues after rebase
2023-01-21 20:09:02 -06:00
..
apps feat(server): transcoding improvements (#1370) 2023-01-21 20:09:02 -06:00
bin fix(mobile): omit null values from json requests (#1212) 2023-01-09 22:08:45 -06:00
libs feat(server): transcoding improvements (#1370) 2023-01-21 20:09:02 -06:00
openapi-generator/templates/serialization/native fix(mobile): omit null values from json requests (#1212) 2023-01-09 22:08:45 -06:00
.dockerignore feat(immich-server) use ubuntu base-image (#851) 2022-10-24 14:59:07 -05:00
.eslintrc.js chore(docs): contributing (#1311) 2023-01-12 08:44:11 -06:00
.gitignore Added generated geocoding files to gitignore 2022-09-28 15:44:43 -05:00
.prettierignore chore(docs): contributing (#1311) 2023-01-12 08:44:11 -06:00
.prettierrc Add web interface with admin functionality (#167) 2022-05-21 02:23:55 -05:00
Dockerfile feat(server): Fix exif data parsing (#1326) 2023-01-17 09:29:49 -06:00
immich-openapi-specs.json feat(server): transcoding improvements (#1370) 2023-01-21 20:09:02 -06:00
LICENSE feat(docker) revert ubuntu base image (#863) 2022-10-25 14:18:37 -05:00
nest-cli.json refactor(server): domain/infra (#1298) 2023-01-11 21:34:36 -05:00
openapitools.json Add OpenAPI Specs and Response DTOs (#320) 2022-07-08 21:26:50 -05:00
package-lock.json feat(server): Fix exif data parsing (#1326) 2023-01-17 09:29:49 -06:00
package.json refactor(server): system config (#1353) 2023-01-21 10:11:55 -06:00
README.md feat(server,web): system config for admin (#959) 2022-11-14 22:39:32 -06:00
start-microservices.sh fix(docker-build): start main process with exec (#1210) 2022-12-29 14:49:02 -06:00
start-server.sh fix(docker-build): start main process with exec (#1210) 2022-12-29 14:49:02 -06:00
tsconfig.build.json Transfer repository from Gitlab 2022-02-03 10:06:44 -06:00
tsconfig.json refactor(server): system config (#1353) 2023-01-21 10:11:55 -06:00

How to run migration

  1. Attached to the container shell
  2. Run npm run typeorm -- migration:generate ./libs/database/src/<migration-name> -d libs/database/src/config/database.config.ts
  3. Check if the migration file makes sense
  4. Move the migration file to folder server/libs/database/src/migrations in your code editor.