README 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Serviio DNLA Server is a free media server. It allows you to stream
  2. your media files (music, video or images) to renderer devices (e.g. a
  3. TV set, Bluray player, games console or mobile phone) on your connected
  4. home network.
  5. There is also a paid for Pro edition which further enhances the
  6. possibilities of sharing content in your connected household. If you
  7. don't buy a Pro edition licence, Serviio automatically will turn to
  8. Free version after 14 days. This SlackBuild provides no Pro edition
  9. licence.
  10. Serviio works with many devices from your connected home (TV,
  11. Playstation 3, XBox 360, smart phones, tablets, etc.). It supports
  12. profiles for particular devices so that it can be tuned to maximise the
  13. device's potential and/or minimize lack of media format playback
  14. support (via transcoding).
  15. Serviio needs a serviio user and a serviio group with GID=337 and
  16. UID=337 to work properly. Run these commands:
  17. groupadd -g 337 serviio
  18. useradd -d /opt/serviio -g 337 -u 337 -U serviio
  19. This SlackBuild also provides a /etc/rc.d/rc.serviio file. If you want
  20. to start Serviio at boot time, add these lines to /etc/rc.d/rc.local:
  21. # start Serviio DNLA Server:
  22. if [ -x /etc/rc.d/rc.serviio] ; then
  23. /etc/rc.d/rc.serviio start
  24. fi
  25. Also, add to rc.local_shutdown
  26. # stop Serviio DNLA Server
  27. if [ -x /etc/rc.d/rc.serviio] ; then
  28. /etc/rc.d/rc.serviio start
  29. fi