Advertisement
superchunks

minidlna

Mar 20th, 2016
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 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. # Specify the user name or uid to run as.
  10. # user=minidlna
  11.  
  12. # Path to the directory you want scanned for media files.
  13. #
  14. # This option can be specified more than once if you want multiple directories
  15. # scanned.
  16. #
  17. # If you want to restrict a media_dir to a specific content type, you can
  18. # prepend the directory name with a letter representing the type (A, P or V),
  19. # followed by a comma, as so:
  20. # * "A" for audio (eg. media_dir=A,/var/lib/minidlna/music)
  21. # * "P" for pictures (eg. media_dir=P,/var/lib/minidlna/pictures)
  22. # * "V" for video (eg. media_dir=V,/var/lib/minidlna/videos)
  23. media_dir=A,/media/pi/250gb/radio
  24. media_dir=P,/media/pi/250gb/pictures
  25. media_dir=V,/media/pi/250gb/videos
  26. media_dir=V,/media/250gb/tv
  27. #media_dir=/var/lib/minidlna
  28.  
  29. # Path to the directory that should hold the database and album art cache.
  30. db_dir=/var/cache/minidlna
  31.  
  32. # Path to the directory that should hold the log file.
  33. log_dir=/var/log
  34.  
  35. # Network interface(s) to bind to (e.g. eth0), comma delimited.
  36. # This option can be specified more than once.
  37. #network_interface=
  38.  
  39. # IPv4 address to listen on (e.g. 192.0.2.1/24).
  40. # If omitted, the mask defaults to 24. The IPs are added to those determined
  41. # from the network_interface option above.
  42. # This option can be specified more than once.
  43. #listening_ip=
  44.  
  45. # Port number for HTTP traffic (descriptions, SOAP, media transfer).
  46. # This option is mandatory (or it must be specified on the command-line using
  47. # "-p").
  48. port=8200
  49.  
  50. # URL presented to clients (e.g. http://example.com:80).
  51. #presentation_url=/
  52.  
  53. # Name that the DLNA server presents to clients.
  54. # Defaults to "hostname: username".
  55. friendly_name=my pi
  56.  
  57. # Serial number the server reports to clients.
  58. # Defaults to 00000000.
  59. serial=681019810597110
  60.  
  61. # Model name the server reports to clients.
  62. #model_name=Windows Media Connect compatible (MiniDLNA)
  63. # Model number the server reports to clients.
  64. # Defaults to the version number of minidlna.
  65. #model_number=
  66.  
  67. # Automatic discovery of new files in the media_dir directory.
  68. inotify=yes
  69.  
  70. # List of file names to look for when searching for album art.
  71. # Names should be delimited with a forward slash ("/").
  72. # This option can be specified more than once.
  73. album_art_names=Cover.jpg/cover.jpg/AlbumArtSmall.jpg/albumartsmall.jpg
  74. album_art_names=AlbumArt.jpg/albumart.jpg/Album.jpg/album.jpg
  75. album_art_names=Folder.jpg/folder.jpg/Thumb.jpg/thumb.jpg
  76.  
  77. # Strictly adhere to DLNA standards.
  78. # This allows server-side downscaling of very large JPEG images, which may
  79. # decrease JPEG serving performance on (at least) Sony DLNA products.
  80. #strict_dlna=no
  81.  
  82. # Support for streaming .jpg and .mp3 files to a TiVo supporting HMO.
  83. #enable_tivo=no
  84.  
  85. # Notify interval, in seconds.
  86. #notify_interval=895
  87.  
  88. # Path to the MiniSSDPd socket, for MiniSSDPd support.
  89. #minissdpdsocket=/run/minissdpd.sock
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement