https://github.com/jaymoulin/docker-rpi-plex-video-converter
Raspberry PI - Plex Video converter - Docker image (Multiarch)
https://github.com/jaymoulin/docker-rpi-plex-video-converter
docker docker-image dockerfile multiarch plex plex-video-converter raspberry raspberry-pi raspberrypi video video-conversion
Last synced: over 1 year ago
JSON representation
Raspberry PI - Plex Video converter - Docker image (Multiarch)
- Host: GitHub
- URL: https://github.com/jaymoulin/docker-rpi-plex-video-converter
- Owner: jaymoulin
- License: mit
- Created: 2017-07-26T17:03:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-10-09T11:27:15.000Z (over 1 year ago)
- Last Synced: 2025-02-27T06:22:56.724Z (over 1 year ago)
- Topics: docker, docker-image, dockerfile, multiarch, plex, plex-video-converter, raspberry, raspberry-pi, raspberrypi, video, video-conversion
- Language: Shell
- Homepage: https://brands.jaymoulin.me/me/docker-rpi-plex-video-converter
- Size: 163 KB
- Stars: 24
- Watchers: 4
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
> [!CAUTION]
> As-of 2021, this product does not have a free support team anymore. If you want this product to be maintained, please support my work.
> [!NOTE]
> (This product is available under a free and permissive license, but needs financial support to sustain its continued improvements. In addition to maintenance and stability there are many desirable features yet to be added.)
> [!TIP]
> THIS REPOSITORY IS AUTO-UPDATED BY [GITHUB-RELEASE-NOTIFIER](https://github.com/femtopixel/github-release-notifier) (https://github.com/femtopixel/github-release-notifier)

Raspberry PI - Plex Video converter - Docker Image
==================================================
[](http://github.com/jaymoulin/docker-rpi-plex-video-converter/releases)
[](https://hub.docker.com/r/jaymoulin/rpi-plex-video-converter/)
[](https://hub.docker.com/r/jaymoulin/rpi-plex-video-converter/)
[](https://www.paypal.me/jaymoulin)
[](https://www.buymeacoffee.com/jaymoulin)
[](https://www.ko-fi.com/jaymoulin)
This image purpose is to convert unsupported video files by Plex for Raspberry to mp4 which is supported.
Just run the container to convert all videos files to convert recursively on your `media` volume :
Please note that this package is also hosted on Github Container Registry, just add `ghcr.io/` before the image name (`docker pull ghcr.io/jaymoulin/rpi-plex-video-converter` instead of `jaymoulin/rpi-plex-video-converter`)
> [!NOTE]
> 0.7.0 update : you can add a `compress=28` environment variable to compress all .mp4 files in the media path. The higher the number, the less the compression
> [!NOTE]
> 0.8.0 update : you can add a `fallback=1` environment variable to use libx264 codec instead of libx265.
```
docker run --rm -t -v /path/to/your/media/folder:/media jaymoulin/rpi-plex-video-converter
```
This image is multiarch, which means it works either on your PC or Raspberry PI
Appendixes
---
### Install Docker
If you don't have Docker installed yet, you can do it easily in one line using this command
```
curl -sSL "https://gist.githubusercontent.com/jaymoulin/e749a189511cd965f45919f2f99e45f3/raw/0e650b38fde684c4ac534b254099d6d5543375f1/ARM%2520(Raspberry%2520PI)%2520Docker%2520Install" | sudo sh && sudo usermod -aG docker $USER
```