I am looking for a dlna server, which support video streams from an ip camera. The dlna server should be tested first on a linux pc and if this works, installed on an openwrt-router.
As a 1st try, minidlna worked immediately with my Samsung PS51D6900DSXZG, but minidlna doesn't support ip cameras. Ushare should support ip cameras, but it doesn't work with my tv, the mkv-files are listed, but cannot be displayed. So is there a way to get ushare work.
Which dlna-server work without problems with Samsung TV?
WHICH Linux-DLNA-server work without problems?
WHICH Linux-DLNA-server work without problems?
SAMSUNG PS51D6900DSXZG
Re: WHICH Linux-DLNA-server work without problems?
check for xupnpd dlna server. It supports IPTV streaming, don`t wonder if it makes you happy too 
viewtopic.php?f=5&t=2952#p23828
EDIT. oops, xupnpd is same ushare...
viewtopic.php?f=5&t=2952#p23828
EDIT. oops, xupnpd is same ushare...
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Re: WHICH Linux-DLNA-server work without problems?
I am trying to get xupnpd work on my ubuntu pc. I don't understand how to get started. I have /usr/bin/xupnpd and /usr/bin/pshare installed and there is a /etc/xupnpd.lua
My ip camera is on 192.168.178.61 e.g. and I would like to see the videostram with my Samsung TV. My linux pc with xupnpd is on 192.168.178.100
Code: Select all
/etc/xupnpd.lua
cfg={}
-- multicast interface for SSDP exchange, 'eth0', 'br0', 'br-lan' for example
cfg.ssdp_interface='eth0'
-- 'cfg.ssdp_loop' enables multicast loop (if player and server in one host)
cfg.ssdp_loop=0
-- HTTP port for incoming connections
cfg.http_port=4044
-- syslog facility (syslog,local0-local7)
cfg.log_facility='local0'
-- 'cfg.daemon' detach server from terminal
cfg.daemon=false
-- silent mode - no logs, no pid file
cfg.embedded=false
-- 'cfg.debug' enables SSDP debug output to stdout (if cfg.daemon=false)
-- 0-off, 1-basic, 2-messages
cfg.debug=1
-- external 'udpxy' url for multicast playlists (udp://@...)
--cfg.udpxy_url='http://192.168.178.100:4022'
-- downstream interface for builtin multicast proxy (comment 'cfg.udpxy_url' for processing 'udp://@...' playlists)
cfg.mcast_interface='eth0'
-- 'cfg.proxy' enables proxy for injection DLNA headers to stream
-- 0-off, 1-radio, 2-radio/TV
cfg.proxy=2
-- User-Agent for proxy
cfg.user_agent='Mozilla/5.0'
-- I/O timeout
cfg.http_timeout=15
-- 'cfg.dlna_extras' enables DLNA extras
cfg.dlna_extras=true
-- XBox360 compatible mode
cfg.xbox360=false
-- WDTV Live compatible mode
cfg.wdtv=false
-- enables UPnP/DLNA notify when reload playlist
cfg.dlna_notify=true
-- group by 'group-title'
cfg.group=true
-- Device name
cfg.name='UPnP-IPTV'
-- static device UUID, '60bd2fb3-dabe-cb14-c766-0e319b54c29a' for example or nil
cfg.uuid='60bd2fb3-dabe-cb14-c766-0e319b54c29a'
-- max url cache size
cfg.cache_size=8
-- url cache item ttl (sec)
cfg.cache_ttl=900
-- default mime type (mpeg, mpeg1, mpeg2, ts)
cfg.default_mime_type='mpeg'
-- feeds update interval (seconds, 0 - disabled)
cfg.feeds_update_interval=0
-- playlist (m3u file path or path with alias
playlist=
{
{ './playlists/mozhay.m3u', 'Mozhay.tv' },
-- { './localmedia', 'Local Media Files', '127.0.0.1;192.168.178.100' }
}
-- feeds list (plugin, feed name, feed type)
feeds=
{
{ 'vimeo', 'channel/hd', 'Vimeo HD Channel' },
{ 'vimeo', 'channel/hdxs', 'HD Xtreme sports' },
{ 'vimeo', 'channel/mtb', 'Mountain Bike Channel' },
{ 'youtube', 'channel/top_rated', 'YouTube Top Rated' },
{ 'gametrailers', 'ps3/review', 'GT - PS3 - Review' },
{ 'gametrailers', 'ps3/preview', 'GT - PS3 - Preview' },
{ 'gametrailers', 'ps3/gameplay', 'GT - PS3 - Gameplay' },
{ 'giantbomb', 'all', 'GiantBomb - All' },
{ 'ag', 'videos', 'AG - New' },
{ 'ivi', 'new', 'IVI - New' },
}
-- log ident, pid file end www root
cfg.version='1.0-rc8'
cfg.log_ident=arg[1] or 'xupnpd'
cfg.pid_file='/var/run/'..cfg.log_ident..'.pid'
cfg.www_root='./www/'
cfg.tmp_path='/tmp/'
cfg.plugin_path='./plugins/'
cfg.config_path='./config/'
cfg.playlists_path='./playlists/'
--cfg.feeds_path='/tmp/xupnpd-feeds/'
cfg.ui_path='./ui/'
dofile('xupnpd_main.lua')
SAMSUNG PS51D6900DSXZG
Re: WHICH Linux-DLNA-server work without problems?
minidlna was also working well for me, however i did no try live streams with it
Re: WHICH Linux-DLNA-server work without problems?
And that's the problem exactly, minidlna doesn't support live streams (or I don't know how to configure it)
SAMSUNG PS51D6900DSXZG
Re: WHICH Linux-DLNA-server work without problems?
after you build and install xupnpd, you should start it.
Then you can access it from a browser where you can add streams to it.
I have it running but never tried a live stream with it.
I prefer minidlna, because I don't use live streams.
If I have time, I can try it for you and will come back with updates.
Then you can access it from a browser where you can add streams to it.
I have it running but never tried a live stream with it.
I prefer minidlna, because I don't use live streams.
If I have time, I can try it for you and will come back with updates.
Re: WHICH Linux-DLNA-server work without problems?
How do you get your stream now?
What app do you use to get live streams from your camera?
What are parameters of this stream (take some record and check with media info tool).
what is direct link to the stream (not IP)?
What app do you use to get live streams from your camera?
What are parameters of this stream (take some record and check with media info tool).
what is direct link to the stream (not IP)?
LE40B653T5W,UE40D6750,UE65Q8C
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE
Have questions? Read SamyGO Wiki, Search on forum first!
FFB (v0.8), FFB for CI+ . Get root on: C series, D series, E series, F series, H series. rooting K series, exeDSP/exeTV patches[C/D/E/F/H]
DO NOT EVER INSTALL FIRMWARE UPGRADE