Forskel mellem versioner af "MiniDLNA installering"

Fra Millenium's Wiki
Spring til navigation Spring til søgning
(Oprettede siden med '== Installering == <code> sudo apt-get install minidlna </code> == Webmin == # Hent modul fra [http://sourceforge.net/projects/minidlnawebmin/ Webmin plugin] # Gå til We...')
 
Linje 16: Linje 16:
 
# Vælg filen fra 1.
 
# Vælg filen fra 1.
 
# Klik '' Install module ''
 
# Klik '' Install module ''
 
  
 
== Konfiguration ==
 
== Konfiguration ==
Linje 81: Linje 80:
 
model_number=1
 
model_number=1
 
</code>
 
</code>
 +
 +
Restart server
 +
<code>
 +
sudo /etc/init.d/minidlna stopsudo /etc/init.d/minidlna start
 +
</code>
 +
 +
Rescan media files med en af følgende:
 +
# Knap i webmin.
 +
# <code>minidlna -R</code>
 +
# <code>/etc/init.d/minidlna force-reload</code>

Versionen fra 26. aug 2013, 14:26

Installering

sudo apt-get install minidlna

Webmin

  1. Hent modul fra Webmin plugin
  2. Gå til Webmin for serveren.
  3. Webmin.
  4. Webmin Configuration.
  5. Webmin modules.
  6. Vælg "From uploaded file" .
  7. Klik Select file
  8. Vælg filen fra 1.
  9. Klik Install module

Konfiguration

Redigér conf filen: sudo nano /etc/minidlna.conf

conf fil:

  1. port for HTTP (descriptions, SOAP, media transfer) traffic

port=8200

  1. network interface to bind to (this is the only interface that will serve files)
  2. network_interface=eth0
  1. set this to the directory you want scanned.
  2. * if have multiple directories, you can have multiple media_dir= lines
  3. * if you want to restrict a media_dir to a specific content type, you
  4. can prepend the type, followed by a comma, to the directory:
  5. + "A" for audio (eg. media_dir=A,/home/jmaggard/Music)
  6. + "V" for video (eg. media_dir=V,/home/jmaggard/Videos)
  7. + "P" for images (eg. media_dir=P,/home/jmaggard/Pictures)

media_dir=V,/mnt/Video media_dir=A,/mnt/Music media_dir=P,/mnt/Pictures

  1. set this if you want to customize the name that shows up on your clients

friendly_name=Movano DLNA

  1. set this if you would like to specify the directory where you want MiniDLNA to store its database and album art cache

db_dir=/mnt/hdd_3/minidlna

  1. set this if you would like to specify the directory where you want MiniDLNA to store its log file
  2. log_dir=/var/log
  1. this should be a list of file names to check for when searching for album art
  2. note: names should be delimited with a forward slash ("/")

album_art_names=Front.jpg/front.jpg/Cover.jpg/cover.jpg/AlbumArtSmall.jpg/albumartsmall.jpg/AlbumArt.jpg/albumart.jpg/Album.jpg/album.jpg/Folder.jpg/folder. pg/Thumb.jpg/thumb.jpg

  1. set this to no to disable inotify monitoring to automatically discover new files
  2. note: the default is yes

inotify=yes

  1. set this to yes to enable support for streaming .jpg and .mp3 files to a TiVo supporting HMO

enable_tivo=no

  1. set this to strictly adhere to DLNA standards.
  2. * This will allow server-side downscaling of very large JPEG images,
  3. which may hurt JPEG serving performance on (at least) Sony DLNA products.

strict_dlna=no

  1. default presentation url is http address on port 80

presentation_url=http://minidlna/index.php

  1. notify interval in seconds. default is 895 seconds.

notify_interval=895

  1. serial and model number the daemon will report to clients
  2. in its XML description

serial=12345678 model_number=1

Restart server sudo /etc/init.d/minidlna stopsudo /etc/init.d/minidlna start

Rescan media files med en af følgende:

  1. Knap i webmin.
  2. minidlna -R
  3. /etc/init.d/minidlna force-reload