Dim, a media manager fueled by dark forces
rodrimarchese 040f5f8488 add loader when creating a library | 1 year ago | |
---|---|---|
.cargo | 2 years ago | |
.github | 2 years ago | |
.vscode | 3 years ago | |
auth | 2 years ago | |
database | 2 years ago | |
dim | 2 years ago | |
docs | 3 years ago | |
events | 2 years ago | |
extra | 3 years ago | |
ui | 1 year ago | |
.dockerignore | 3 years ago | |
.gitattributes | 3 years ago | |
.gitignore | 2 years ago | |
.mailmap | 2 years ago | |
.rgignore | 3 years ago | |
CONTRIBUTING.md | 3 years ago | |
Cargo.lock | 2 years ago | |
Cargo.toml | 2 years ago | |
Dockerfile | 2 years ago | |
LICENSE.md | 2 years ago | |
README.md | 2 years ago | |
deny.toml | 4 years ago | |
docker-compose-template.yml | 2 years ago | |
rust-toolchain | 2 years ago | |
yarn.lock | 2 years ago |
Dim is a self-hosted media manager. With minimal setup, Dim will organize and beautify your media collections, letting you access and play them anytime from anywhere.
You can then obtain binaries from the release tab in github:
unzip ./release-linux.zip && tar -xvzf ./release.tar.gz
cd release && ./dim
http://0.0.0.0:8000
(assuming it's running locally.)The following command runs dim on port 8000, storing configuration in $HOME/.config/dim
.
You may change that path if you'd like to store configuration somewhere else.
You can mount as many directories containing media as you like by repeating the -v HOST_PATH:CONTAINER_PATH
option.
In this example, the path /media
on the host is made available at the same path inside the Docker container.
This name "media" is arbitrary and you can choose whatever you like.
docker run -d -p 8000:8000/tcp -v $HOME/.config/dim:/opt/dim/config -v /media:/media:ro ghcr.io/dusk-labs/dim:dev
To use hardware acceleration, mount the relevant device:
docker run -d -p 8000:8000/tcp -v $HOME/.config/dim:/opt/dim/config -v /media:/media:ro --device=/dev/dri/renderD128 ghcr.io/dusk-labs/dim:dev
Refer to docker-compose-template.yaml to run dim using Docker Compose.
To run from source, you'll first need to install the following dependencies on your system:
Once the dependencies are installed, clone the repository and build the project:
git clone https://github.com/Dusk-Labs/dim
yarn --cwd ui/ && yarn --cwd ui/ build
mkdir utils && ln -nfs $(which ffmpeg) utils/ffmpeg && ln -nfs $(which ffprobe) utils/ffprobe
If you're on Linux, run dim with:
cargo run --features vaapi --release
On other platforms where libva isn't available, run dim with:
cargo run --release
Dim is licensed under the AGPLv3 license (see LICENSE.md or https://opensource.org/licenses/AGPL-3.0)