Project Icon

home-gallery

AI驱动的自托管开源相册,支持智能图像和人脸识别

HomeGallery是一款自托管的开源网络相册,专为个人照片和视频浏览设计。它集成了AI驱动的图像和人脸识别技术,支持标签管理和移动端访问。该项目特点包括快速响应、离线媒体支持和强大的查询功能。其他亮点有相似图像搜索、地理位置反查和PWA支持。HomeGallery注重用户隐私,适用于Linux、Mac和Windows等多个平台,是计算机爱好者的理想选择。

HomeGallery hero image

HomeGallery

Join the chat at https://gitter.im/home-gallery/community

Home-Gallery.org is a self-hosted open-source web gallery to browse personal photos and videos featuring tagging, mobile-friendly, and AI powered image and face discovery. Try the demo gallery or enjoy the food images!

Note: This software is a private pet/spare time project without any warranty. Ask questions on gitter.im or Discord.

Do you like HomeGallery? Does it solve your media problem? Would you like to help? Please read the CONTRIBUTING guidlines and support this project through any recurring financial support to my patreon.com/xemle or one time support to my paypal.me/xemle account. Thank you in advance.

MIT License

Links

Motivation

  • The source of all my private images and videos are stored local on my NAS at home. The gallery should be on top/close of the source.
  • Cloud service do not cover my privacy concerns
  • All gallery software are lacking to have a fast user experience on mobile phones
  • The gallery software should help to browse and discover forgotten memories from the complete media archive

Target Users

  • Computer affine users who solve their own problems and go the extra mile
  • Serve your local data without usage of cloud services
  • One user only - all files are served
  • View your own photos and videos from mobile phones
  • Serve all your images from multiple media source directories (hard drive, camara files, mobile phone files, etc)

Quickstart

Following steps need to be performed to use HomeGallery

  • Download the gallery software as prebuilt binary or docker image
  • Init the configuration with media sources like ~/Pictures
  • Start the server on localhost:3000
curl -sL https://dl.home-gallery.org/dist/latest/home-gallery-latest-linux-x64 -o gallery
chmod 755 gallery
./gallery init --source ~/Pictures
./gallery run server

and open localhost:3000 in your browser. Run ./gallery -h for further help of the CLI.

See dl.home-gallery.org/dist for further binaries. Eg. latest binaries for Linux, Mac or Windows.

The configuration gallery.config.yml can be found in the current directory for fine tuning. See install section in the documentation for further information.

Quickstart using Docker

mkdir -p data
alias gallery="docker run -ti --rm \
  -v $(pwd)/data:/data \
  -v $HOME/Pictures:/data/Pictures \
  -u $(id -u):$(id -g) \
  -p 3000:3000 xemle/home-gallery"
gallery init --source /data/Pictures
gallery run server

and open localhost:3000 in your browser. Run gallery -h for further help of the CLI.

The gallery configuration can be found in ./data/config/gallery.config.yml for fine tuning.

Want to use docker compose? See install section in the documentation for further information.

Documentation

See docs.home-gallery.org for general documentation.

Features

  • Endless photo stream via virtual scrolling
  • Video transcoding
  • Reverse image lookup (similar image search). If you have one sunset image, you can easily find other sunset photos in your archive without manual tagging
  • Face detection and search by similar faces
  • Expressive query language with and, or, not operands
  • GEO location reverse lookups
  • Simple mobile app through PWA support
  • Tagging, single and multi selection
  • Support of read only and offline media sources. Once the preview files are generated and their meta data are extraced, the original sources are not touched and required any more. So media from offline disk need to be extracted only once and the disk can stay offline on next runs
  • Media are identified by their content. Duplicated media (identical files byte-by-byte) are only processed once. Renaming is supported without recalulating previews etc.
  • Fast file changes detection such as add, removes, renames or moves
  • Static web gallery site export such as the demo gallery
  • Meta data export to XMP sidecar files
  • Stream photos and videos to Chromcast enabled TV devices
  • Runs on SoC such Raspberry PI

Limits

The complete "database" is loaded into the browser. My 100.000 media are about 100 MB plain JSON and 12 MB compressed JSON. The performance is quite good on current mobile device. A user reported a successful setup with over 400.000 media files. Further feedback is welcome.

Binary Downloads

HomeGallery has prebuilt binaries for Linux, MacOS and Windows. Further download options can be found here.

See installation section for usage.

External Services and Privacy

The goal of HomeGallery is to use as less public serivces as possible due sensitive private image data. It tries to use service which can be deployed local. However the setup requires technical knowlege and technical maintenance. Following services are called:

For geo reverse lookups (geo coordinates to addess), HomeGallery queries the Nominatim Service from OpenStreetMap. Only geo coordinates are transmitted.

For reverse image lookups (similar image search), object detection and face recogintion, HomeGallery uses the its own public API at api.home-gallery.org. This public API supports low powered devices such as the SoC Raspberry PI and all preview images are send to this public API by default. No images or privacy data are kept.

The API can be configured and ran also locally or as Docker container. See installation section for usage.

Customized Environments

HomeGallery runs on the JavaScript runtime NodeJS which is supported by various platforms such as Linux (also Raspberry PIs), Mac and Windows.

For most cases a customized environment should be sufficient with

  • node version 20 LTS (or 18 old LTS)
  • perl (Linux)

Setup

# Clone or download the repo from GitHub
git clone https://github.com/xemle/home-gallery.git
cd home-gallery
# Install required packages
npm install
# Build required modules
npm run build

In some cornor cases you might also need essential build tools to compile library bindings.

  • make
  • g++
  • python

Development recipes

Build

HomeGallery uses npm workspaces with multi packages. Common npm scripts are clean, build, test.

To run only a subset of packages you can use pnpm's filter feature, e.g build only module export-static and database:

npx pnpm -r --filter './*/{export-static,database}' build

Unit Test

Run unit tests from specific packages (via pnpm)

npx pnpm -r --filter './*/{query,events}' test

End-To-End Test

Run specific e2e tests (via Gauge)

git clone https://github.com/xemle/home-gallery-e2e-data.git data
npm run test:e2e -- --tags dev

home-gallery-e2e-data contains test files using Git LFS.

The e2e test output data are stored in /tmp/gallery-e2e directory. The latest test run is symlinked into the directory latest-e2e-test within the HomeGallery working directory. Check the cli.log and e2e.log (ndjson format) in each test directory.

Bundle

Create local binary bundle from a feature branch

node scripts/bundle.js --version=1.3 --snapshot=-feature-test --filter=linux-x64 --no-before --no-run

Create local native bundle which excludes binaries via npm like sharp, ffmpeg and ffprobe. It should contain only js code which should run everywhere. It requires external binaries vipsthumbnail, ffmpeg and ffprobe in the PATH environment to work properly.

node scripts/bundle.js --version=1.3 --snapshot=-feature-test --filter=linux-native --no-before --no-run

Development Reset

To reset the current development state and start fresh on any very strange error behavior, you might run:

rm -rf package-lock.json node_modules e2e/node_modules packages/*/node_modules
npm install && npm run clean && npm run build
项目侧边栏1项目侧边栏2
推荐项目
Project Cover

豆包MarsCode

豆包 MarsCode 是一款革命性的编程助手,通过AI技术提供代码补全、单测生成、代码解释和智能问答等功能,支持100+编程语言,与主流编辑器无缝集成,显著提升开发效率和代码质量。

Project Cover

AI写歌

Suno AI是一个革命性的AI音乐创作平台,能在短短30秒内帮助用户创作出一首完整的歌曲。无论是寻找创作灵感还是需要快速制作音乐,Suno AI都是音乐爱好者和专业人士的理想选择。

Project Cover

有言AI

有言平台提供一站式AIGC视频创作解决方案,通过智能技术简化视频制作流程。无论是企业宣传还是个人分享,有言都能帮助用户快速、轻松地制作出专业级别的视频内容。

Project Cover

Kimi

Kimi AI助手提供多语言对话支持,能够阅读和理解用户上传的文件内容,解析网页信息,并结合搜索结果为用户提供详尽的答案。无论是日常咨询还是专业问题,Kimi都能以友好、专业的方式提供帮助。

Project Cover

阿里绘蛙

绘蛙是阿里巴巴集团推出的革命性AI电商营销平台。利用尖端人工智能技术,为商家提供一键生成商品图和营销文案的服务,显著提升内容创作效率和营销效果。适用于淘宝、天猫等电商平台,让商品第一时间被种草。

Project Cover

吐司

探索Tensor.Art平台的独特AI模型,免费访问各种图像生成与AI训练工具,从Stable Diffusion等基础模型开始,轻松实现创新图像生成。体验前沿的AI技术,推动个人和企业的创新发展。

Project Cover

SubCat字幕猫

SubCat字幕猫APP是一款创新的视频播放器,它将改变您观看视频的方式!SubCat结合了先进的人工智能技术,为您提供即时视频字幕翻译,无论是本地视频还是网络流媒体,让您轻松享受各种语言的内容。

Project Cover

美间AI

美间AI创意设计平台,利用前沿AI技术,为设计师和营销人员提供一站式设计解决方案。从智能海报到3D效果图,再到文案生成,美间让创意设计更简单、更高效。

Project Cover

AIWritePaper论文写作

AIWritePaper论文写作是一站式AI论文写作辅助工具,简化了选题、文献检索至论文撰写的整个过程。通过简单设定,平台可快速生成高质量论文大纲和全文,配合图表、参考文献等一应俱全,同时提供开题报告和答辩PPT等增值服务,保障数据安全,有效提升写作效率和论文质量。

投诉举报邮箱: service@vectorlightyear.com
@2024 懂AI·鲁ICP备2024100362号-6·鲁公网安备37021002001498号