#176: DLNA & Upnp support

Support forum for minisatip
ovidiu31

Post by ovidiu31 »

is installed but still crashing to same error while compiling

gcc -fno-exceptions -fno-rtti -O2 -Ilua-5.1.4 -Llua-5.1.4 -DWITH_LIBUUID -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -o xupnpd main.cpp soap.cpp mem.cpp mcast.cpp luaxlib.cpp luaxcore.cpp luajson.cpp luajson_parser.cpp md5.o -llua -ldl -lm -luuid
mcast.cpp:15:23: fatal error: uuid/uuid.h: No such file or directory
#include
^
compilation terminated.

[root@localhost src]# yum install uuid-devel
Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
* base: centos.mirrors.linux.ro
* epel: fedora.mirrors.telekom.ro
* extras: centos.mirrors.linux.ro
* updates: centos.mirrors.linux.ro
Package uuid-devel-1.6.2-26.el7.x86_64 already installed and latest version
Nothing to do
9000h
Posts: 89
Joined: Tue May 12, 2015 1:49 pm

Post by 9000h »

the reason is probably simple
```
rpmquery -l uuid-devel
/usr/bin/uuid-config
/usr/include/uuid.h
/usr/lib64/libossp-uuid.so
/usr/lib64/pkgconfig/ossp-uuid.pc
/usr/share/man/man3/ossp-uuid.3.gz
```
the header file uuid.h is under /usr/include and not /usr/include/uuid on centos
ovidiu31

Post by ovidiu31 »

mcast.cpp: In function void mcast::uuid_gen(char*):
mcast.cpp:55:12: error: aggregate uuid_t uuid has incomplete type and cannot be defined
uuid_t uuid;
^
mcast.cpp:56:23: error: uuid_generate was not declared in this scope
uuid_generate(uuid);
^
mcast.cpp:58:32: error: uuid_unparse_lower was not declared in this scope
uuid_unparse_lower(uuid,dst);
^
make: *** [x86] Error 1
9000h
Posts: 89
Joined: Tue May 12, 2015 1:49 pm

Post by 9000h »

looks like I was wrong the right missing package is libuuid-devel
ovidiu31

Post by ovidiu31 »

fixed thanks... but still one big question ....
how do i obtain an Thor 1W channels list m3u?
9000h
Posts: 89
Joined: Tue May 12, 2015 1:49 pm

Post by 9000h »

you may download the vdr channels.conf from http://channelpedia.yavdr.com/gen/DVB-S ... nnels.conf and convert it with this script
https://gist.githubusercontent.com/nfed ... /cc2m3u.py
lars18th

Post by lars18th »

Hi @9000h ,

Interesting script! Perhaps a new script for scanning at some hours (using minisatip as tunner) can create the conf file and export it to the minisatip/html directory. You agree?
9000h
Posts: 89
Joined: Tue May 12, 2015 1:49 pm

Post by 9000h »

the vlc-3.0.0 nightly has direct support for satip rtsp protocol in, the syntax is like:
```
#EXTINF:-1,Das Erste KDG
satip://192.168.178.129:554/?freq=338.000&msys=dvbc&sr=6900&mtype=256qam&pids=0,100,101,104,102,103,106
#EXTINF:-1,Astra 19.2E DMAX vert
satip://192.168.178.133/?src=1&freq=12480&sr=27500&fec=34&pol=v&msys=dvbs&pids=0,108,3327,3328
```
Post Reply