Giter VIP home page Giter VIP logo

minhnhut0602 / home-gallery Goto Github PK

View Code? Open in Web Editor NEW

This project forked from xemle/home-gallery

0.0 0.0 0.0 712 KB

Self-hosted open-source web gallery to view your photos and videos featuring mobile-friendly, tagging and AI powered image discovery

Home Page: https://home-gallery.org

License: MIT License

JavaScript 61.68% Dockerfile 0.31% TypeScript 28.48% Nearley 1.17% CSS 0.12% SCSS 5.90% HTML 0.57% Python 1.77%

home-gallery's Introduction

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.

Do you like HomeGallery? Does it solve your media problem? Please support this project through any recurring 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
  • Import media source(s) via CLI
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 &
./gallery run import --initial

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 &
gallery run import --initial

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

  • 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
  • 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 side export such as the demo gallery

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 14 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

HomeGallery uses lerna with multi packages. Common npm scripts are clean, build, watch.

To run only a subset of packages you can use lerna's scope feature, e.g build only module export and database:

npm run build -- --scope '@home-gallery/{export,database}'

home-gallery's People

Contributors

xemle avatar gitter-badger avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.