Go to file
2016-03-10 01:57:25 +01:00
etc Improved configuration 2016-03-10 01:57:25 +01:00
Dockerfile Improved configuration 2016-03-10 01:57:25 +01:00
entrypoint.sh Improved configuration 2016-03-10 01:57:25 +01:00
README.md Improved configuration 2016-03-10 01:57:25 +01:00

ReadyMedia Transcode with Docker

Docker image for ReadyMedia (formerly known as MiniDLNA), a DLNA/UPnP-AV Media server with transcode support.

It use AUR readymedia-transcode-git package based on readymedia-transcode project.

License: MIT

Local build

$ docker build -t mdouchement/readymedia-transcode .

Running ReadyMedia container

# Running and get a Bash interpreter
$ docker run -v /my_media:/data --net=host -it mdouchement/readymedia-transcode:latest

# Running as daemon
$ docker run -v /my_media:/data --net=host -d mdouchement/readymedia-transcode:latest
  • You can add options by setting the following environment variable MINIDLNA_OPTS
  • You can change the video transcoder by setting the following environment variable TRANSCODE_VIDEO_TRANSCODER
    • default: /usr/share/minidlna/transcodescripts/transcode_video-hq
    • /usr/share/minidlna/transcodescripts/transcode_video
  • MINIDLNA_PORT=8200
  • MINIDLNA_FRIENDLY_NAME 'DLNA Server'

Contributing

All PRs are welcome.

  1. Fork it ( https://github.com/[my-github-username]/gemsupport/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request