Ignore:
Timestamp:
05/30/15 17:44:59 (8 years ago)
Author:
Stephan
Message:

new xupnpd version 1.033

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ipk/source.mipsel/network_xupnpd/_path_/etc/xupnpd/xupnpd.lua

    r30367 r34402  
    22
    33-- multicast interface for SSDP exchange, 'eth0', 'br0', 'br-lan' for example
    4 cfg.ssdp_interface='any'
     4cfg.ssdp_interface='lo'
    55
    66-- 'cfg.ssdp_loop' enables multicast loop (if player and server in one host)
     
    88
    99-- SSDP announcement interval
    10 cfg.ssdp_notify_interval=5
     10cfg.ssdp_notify_interval=15
    1111
    1212-- SSDP announcement age
     
    2323
    2424-- silent mode - no logs, no pid file
    25 cfg.embedded=true
     25cfg.embedded=false
    2626
    2727-- 'cfg.debug' enables SSDP debug output to stdout (if cfg.daemon=false)
     
    3333
    3434-- downstream interface for builtin multicast proxy (comment 'cfg.udpxy_url' for processing 'udp://@...' playlists)
    35 cfg.mcast_interface='any'
     35cfg.mcast_interface='eth1'
    3636
    3737-- 'cfg.proxy' enables proxy for injection DLNA headers to stream
     
    4848cfg.dlna_notify=true
    4949
     50-- UPnP/DLNA subscribe ttl
     51cfg.dlna_subscribe_ttl=1800
     52
    5053-- group by 'group-title'
    5154cfg.group=true
    5255
    5356-- sort files
    54 cfg.sort_files=true
     57cfg.sort_files=false
    5558
    5659-- Device name
    57 --cfg.name='Titan UPnP-Server'
    5860cfg.name=io.popen("uname -n"):read("*l")..'-xupnpd'
    5961
    6062-- static device UUID, '60bd2fb3-dabe-cb14-c766-0e319b54c29a' for example or nil
    61 -- cfg.uuid='60bd2fb3-dabe-cb14-c766-0e319b54c29a'
    6263cfg.uuid=''
    63 
    6464
    6565-- max url cache size
     
    7373
    7474-- feeds update interval (seconds, 0 - disabled)
    75 cfg.feeds_update_interval=3600
     75cfg.feeds_update_interval=0
    7676cfg.playlists_update_interval=0
    7777
     
    8080{
    8181--    { './playlists/mozhay.m3u', 'Mozhay.tv' },
    82     { '/media/hdd/movie', 'Aufnahmen' }
     82--    { './localmedia', 'Local Media Files' }
    8383--    { './private', 'Private Media Files', '127.0.0.1;192.168.1.1' }  -- only for 127.0.0.1 and 192.168.1.1
     84      { '/media/hdd/movie', 'Aufnahmen' }
    8485}
    8586
     
    8788feeds=
    8889{
    89 --    { 'vimeo',          'channel/hd',           'Vimeo HD Channel' },
    90 --    { 'vimeo',          'channel/hdxs',         'Vimeo Xtreme sports' },
    91 --    { 'vimeo',          'channel/mtb',          'Vimeo MTB Channel' },
    92 --    { 'youtube',        'channel/top_rated',    'YouTube Top Rated' },
     90    { 'vimeo',          'channel/hd',           'Vimeo HD Channel' },
     91    { 'vimeo',          'channel/hdxs',         'Vimeo Xtreme sports' },
     92    { 'vimeo',          'channel/mtb',          'Vimeo MTB Channel' },
     93    { 'youtube',        'channel/top_rated',    'YouTube Top Rated' },
    9394--    { 'youtube',        'Drift0r',              'Drift0r' },
    9495--    { 'youtube',        'XboxAhoy',             'XboxAhoy' },
     
    101102
    102103-- log ident, pid file end www root
    103 cfg.version='1.031'
     104cfg.version='1.033'
    104105cfg.log_ident=arg[1] or 'xupnpd'
    105106cfg.pid_file='/var/run/'..cfg.log_ident..'.pid'
Note: See TracChangeset for help on using the changeset viewer.