Advertisement
gyulazsolti

Untitled

Feb 27th, 2017
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.98 KB | None | 0 0
  1. # port for HTTP (descriptions, SOAP, media transfer) traffic
  2. port=8200
  3.  
  4. # network interfaces to serve, comma delimited
  5. #network_interface=egiga0
  6.  
  7. # specify the user account name or uid to run as
  8. user=minidlna
  9.  
  10. # set this to the directory you want scanned.
  11. # * if you want multiple directories, you can have multiple media_dir= lines
  12. # * if you want to restrict a media_dir to specific content types, you
  13. # can prepend the types, followed by a comma, to the directory:
  14. # + "A" for audio (eg. media_dir=A,/home/jmaggard/Music)
  15. # + "V" for video (eg. media_dir=V,/home/jmaggard/Videos)
  16. # + "P" for images (eg. media_dir=P,/home/jmaggard/Pictures)
  17. # + "PV" for pictures and video (eg. media_dir=PV,/home/jmaggard/digital_camera)
  18. media_dir=AVP,/mnt/HD_a2/
  19. media_dir=AVP,/i-data/40b38f24/
  20.  
  21. # set this to merge all media_dir base contents into the root container
  22. # note: the default is no
  23. #merge_media_dirs=no
  24.  
  25. # set this if you want to customize the name that shows up on your clients
  26. friendly_name=miniDLNA
  27.  
  28. # set this if you would like to specify the directory where you want MiniDLNA to store its database and album art cache
  29. db_dir=/ffp/var/cache/minidlna
  30.  
  31. # set this if you would like to specify the directory where you want MiniDLNA to store its log file
  32. log_dir=/ffp/var/log
  33.  
  34. # set this to change the verbosity of the information that is logged
  35. # each section can use a different level: off, fatal, error, warn, info, or debug
  36. #log_level=general,artwork,database,inotify,scanner,metadata,http,ssdp,tivo=warn
  37. log_level=debug
  38.  
  39. # this should be a list of file names to check for when searching for album art
  40. # note: names should be delimited with a forward slash ("/")
  41. 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
  42.  
  43. # set this to no to disable inotify monitoring to automatically discover new files
  44. # note: the default is yes
  45. inotify=yes
  46.  
  47. # set this to yes to enable support for streaming .jpg and .mp3 files to a TiVo supporting HMO
  48. enable_tivo=no
  49.  
  50. # set this to strictly adhere to DLNA standards.
  51. # * This will allow server-side downscaling of very large JPEG images,
  52. # which may hurt JPEG serving performance on (at least) Sony DLNA products.
  53. strict_dlna=no
  54.  
  55. # default presentation url is http address on port 80
  56. #presentation_url=http://www.mylan/index.php
  57.  
  58. # notify interval in seconds. default is 895 seconds.
  59. notify_interval=900
  60.  
  61. # serial and model number the daemon will report to clients
  62. # in its XML description
  63. serial=12345678
  64. model_number=1
  65.  
  66. # specify the path to the MiniSSDPd socket
  67. minissdpdsocket=/ffp/var/run/minissdpd.sock
  68.  
  69. # use different container as root of the tree
  70. # possible values:
  71. # + "." - use standard container (this is the default)
  72. # + "B" - "Browse Directory"
  73. # + "M" - "Music"
  74. # + "V" - "Video"
  75. # + "P" - "Pictures"
  76. # + Or, you can specify the ObjectID of your desired root container (eg. 1$F for Music/Playlists)
  77. # if you specify "B" and client device is audio-only then "Music/Folders" will be used as root
  78. #root_container=.
  79.  
  80. # always force SortCriteria to this value, regardless of the SortCriteria passed by the client
  81. #force_sort_criteria=+upnp:class,+upnp:originalTrackNumber,+dc:title
  82.  
  83. # maximum number of simultaneous connections
  84. # note: many clients open several simultaneous connections while streaming
  85. #max_connections=50
  86.  
  87. # Suport to Movie Thumbnail generation. To use this option, thumbnail generation must be enable at compile time.
  88. enable_thumb=yes
  89.  
  90. # The width of the thumbnail image. Large images takes more time to generate. To use this option, thumbnail generation must be enable at compile time.
  91. #thumbnail_width=160
  92.  
  93. # Thumbnail Image quality. To use this option, thumbnail generation must be enable at compile time.
  94. #thumbnail_quality=8
  95.  
  96. # Should the thumbnail have a film strip? To use this option, thumbnail generation must be enable at compile time.
  97. #enable_thumbnail_filmstrip=no
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement