Skip to content

Latest commit

 

History

History
49 lines (31 loc) · 1.89 KB

File metadata and controls

49 lines (31 loc) · 1.89 KB

Docker image for otrdecoder

A minimal and easy to use Docker image for otrdecoder with less than 11 MB of size.

Please use it to decode video recordings you have made at onlinetvrecorder.com

Use it with mounted folder for otrkey files

# specify custom directory for otrkey files
docker container run --rm --user="$(id -u):$(id -g)" -v /your/path/to/otrkeyfiles/:/mnt mgilbert/otrdecoder [-i FILE -e EMAIL -p PASSWORD]
 
# use current directory for otrkey files
docker container run --rm --user="$(id -u):$(id -g)" -v "$(pwd)":/mnt mgilbert/otrdecoder [-i FILE -e EMAIL -p PASSWORD]

Use it with my otrdecoder-docker.sh Bash Script

Install

First you have to install it for example in your personal ~/bin/ directory

wget -O ~/bin/otrdecoder-docker.sh https://raw.githubusercontent.com/ma-gi/docker-otrdecoder/master/otrdecoder-docker.sh
chmod a+x ~/bin/otrdecoder-docker.sh

Now start using it wherever you need it

call it providing your email an password as arguments

otrdecoder-docker.sh -e 'email@example.com' -p 'my#super!secret' *.otrkey

if your email and password settings are specified in your ~/.docker-otrdecoderrc file

otrdecoder-docker.sh *.otrkey

If you like, take a look into the container

docker container run --rm -it --entrypoint="sh" mgilbert/otrdecoder