Move Tablo recordings to your Plex server
1.1K
This docker image will query your Tablo device for recordings and copy them to the appropriate Plex folder, skipping any that already exist. This script does not delete any recordings from your Tablo by default (however you can comment out a line in the "/app/tablo_query" script to do so at your own risk)
A big thanks to the maker of the Capto for Tablo utility (http://www.twg.org/capto/)!
Prerequisites: This docker image needs to be run from a system with mounted access to your parent Plex repository directory.
The Plex parent directory should have three folders named "TV", "Movies" and "Sports" to match the Tablo DVR recording labels.
Steps for usage:
Modify the Docker file line "ENV TABLO_IP" and replace "0.0.0.0" with your Tablo's IP address
Build your docker image with the following command "docker build -t tablo_to_plex ."
Run the docker image either manually or as a cron job using the following options: "docker run -v </path/to/your/Plex/directory:/Plex> tablo_to_plex"
Copy the following contents into a Dockerfile, modify as needed and follow the directions above:
FROM rwalsh3711/tablo_to_plex:latest
MAINTAINER [email protected]
WORKDIR /app
ENV TABLO_IP 0.0.0.0
CMD ["python", "tablo_query"]
Content type
Image
Digest
Size
93.6 MB
Last updated
over 8 years ago
docker pull rwalsh3711/tablo_to_plex