Skip to content

Version 1.18.1

Compare
Choose a tag to compare
@AgustinSRG AgustinSRG released this 07 Aug 13:05
· 22 commits to master since this release
f3ead8e

Changelog

  • Short video animations (< 10s) now are set to start from the beginning by default.
  • Bug fix: Loop is no longer incorrectly set for the last element of an album.
  • Added option to choose if you want to wait after the video or audio ends, or you prefer to play the next one instantly.
  • Increased the max height of the player configuration menu to use all the available space without the need of scroll.

Downloads

Linux with DEB package support

For apt-compatible Linux distributions, we provide a DEB package:

Version Arch Download Hash Hash alg.
1.18.1 amd64 Drive
Mega
db6961104044301f8fc17b52336ffeb1939652916e5d9f8518a4abfe2936660a SHA256

Download it, and check its integrity using:

sha256sum ./personalmediavault_1.18-1.deb

Then, install it using apt:

sudo apt install ./personalmediavault_1.18-1.deb

After the installation, the binary files will be available in /usr/bin, and the frontend files will be available in /usr/lib/pmv/www.

To run a vault, type:

pmv /path/to/vault

You can change the language the launcher uses setting the PMV_LANGUAGE environment variable to en or es.

Windows

For Windows, we provide a MSI installer:

Version Arch Language Download Hash
1.18.1 x64 English Mega SHA256: D45EF557659E378C66697EB1EE6A513329C3FA8FB518A63B1CEBA281FD18A6E6
1.18.1 x64 Spanish Mega SHA256: 5B5A4F9D35994A8A167D1071129E18B4801DBDB13F6BE69C8C67E3C66E374DB8

In order to install Personal Media Vault in Windows, run the installer and everything will be set up for the application to work.

When downloading the MSI installer, check the file hash with PowerShell to make sure the file was not modified:

Get-FileHash -Path "PersonalMediaVault-1.18.1-x64.msi" -Algorithm SHA256
Get-FileHash -Path "PersonalMediaVault-1.18.1-x64-es.msi" -Algorithm SHA256

After it's installed, create an empty folder to store your media vault and right click it. You should see a new option "Open with PersonalMediaVault". Click it to run the vault launcher.

Docker

You can run this project with docker, using the official image uploaded to Docker Hub.

In order to pull the image, type:

docker pull asanrom/pmv

To run a personal media vault instance, you can create a container, which is going to run the backend binary inside it.

Here is an example command to create a container:

docker run -p 80:80 -v /path/to/the/vault:/vault asanrom/pmv --daemon --clean --log-requests --vault-path /vault

You can replace /path/to/the/vault for the path where you have your vault stored.

For empty vaults, a default admin, with password admin will be created. You should change the password as soon as you first login into your vault to protect it with a strong password.

For more options, run:

docker run asanrom/pmv --help