Advertisement
Guest User

minidlna.conf

a guest
Apr 10th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. # This is the configuration file for the MiniDLNA daemon, a DLNA/UPnP-AV media
  2. # server.
  3. #
  4. # Unless otherwise noted, the commented out options show their default value.
  5. #
  6. # On Debian, you can also refer to the minidlna.conf(5) man page for
  7. # documentation about this file.
  8.  
  9.  
  10. # Path to the directory you want scanned for media files.
  11. #
  12. # This option can be specified more than once if you want multiple directories
  13. # scanned.
  14. #
  15. # If you want to restrict a media_dir to a specific content type, you can
  16. # prepend the directory name with a letter representing the type (A, P or V),
  17. # followed by a comma, as so:
  18. # * "A" for audio (eg. media_dir=A,/var/lib/minidlna/music)
  19. # * "P" for pictures (eg. media_dir=P,/var/lib/minidlna/pictures)
  20. # * "V" for video (eg. media_dir=V,/var/lib/minidlna/videos)
  21. #
  22. # WARNING: After changing this option, you need to rebuild the database. Either
  23. # run minidlna with the '-R' option, or delete the 'files.db' file
  24. # from the db_dir directory (see below).
  25. # On Debian, you can run, as root, 'service minidlna force-reload' instead.
  26. media_dir=/var/lib/minidlna
  27.  
  28. # Path to the directory that should hold the database and album art cache.
  29. #db_dir=/var/lib/minidlna
  30.  
  31. # Path to the directory that should hold the log file.
  32. #log_dir=/var/log
  33.  
  34. # Minimum level of importance of messages to be logged.
  35. # Must be one of "off", "fatal", "error", "warn", "info" or "debug".
  36. # "off" turns of logging entirely, "fatal" is the highest level of importance
  37. # and "debug" the lowest.
  38. #log_level=warn
  39.  
  40. # Use a different container as the root of the directory tree presented to
  41. # clients. The possible values are:
  42. # * "." - standard container
  43. # * "B" - "Browse Directory"
  44. # * "M" - "Music"
  45. # * "P" - "Pictures"
  46. # * "V" - "Video"
  47. # if you specify "B" and client device is audio-only then "Music/Folders" will be used as root
  48. #root_container=.
  49.  
  50. # Network interface(s) to bind to (e.g. eth0), comma delimited.
  51. #network_interface=tun0
  52.  
  53. # IPv4 address to listen on (e.g. 192.0.2.1).
  54. listening_ip=10.8.0.1
  55.  
  56. # Port number for HTTP traffic (descriptions, SOAP, media transfer).
  57. port=8200
  58.  
  59. # URL presented to clients.
  60. # The default is the IP address of the server on port 80.
  61. #presentation_url=http://example.com:80
  62.  
  63. # Name that the DLNA server presents to clients.
  64. friendly_name=testdlna
  65.  
  66. # Serial number the server reports to clients.
  67. serial=12345678
  68.  
  69. # Model name the server reports to clients.
  70. #model_name=Windows Media Connect compatible (MiniDLNA)
  71.  
  72. # Model number the server reports to clients.
  73. model_number=1
  74.  
  75. # Automatic discovery of new files in the media_dir directory.
  76. #inotify=yes
  77.  
  78. # List of file names to look for when searching for album art. Names should be
  79. # delimited with a forward slash ("/").
  80. album_art_names=Cover.jpg/cover.jpg/AlbumArtSmall.jpg/albumartsmall.jpg/AlbumArt.jpg/albumart.jpg/Album.jpg/album.jpg/Folder.jpg/folder.jpg/Thumb.jpg/thumb.jpg
  81.  
  82. # Strictly adhere to DLNA standards.
  83. # This allows server-side downscaling of very large JPEG images, which may
  84. # decrease JPEG serving performance on (at least) Sony DLNA products.
  85. #strict_dlna=no
  86.  
  87. # Support for streaming .jpg and .mp3 files to a TiVo supporting HMO.
  88. #enable_tivo=no
  89.  
  90. # Notify interval, in seconds.
  91. #notify_interval=895
  92.  
  93. # Path to the MiniSSDPd socket, for MiniSSDPd support.
  94. #minissdpdsocket=/run/minissdpd.sock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement