Bug #3797
IPTV auto network m3u playlist
0%
Description
Hi.
I use m3u playlist to create muxes, and with this format, found 2 problems:
1. In url field show rtp://239.0.5.185:8202 instead of rtp://239.0.5.185:8202 (without
character)
2. In interface dropdown show empty and need to put some interface (eth0) o rin my case ens160. How i put ens160 by default in all muxes?
Is this forma correct?
#EXTM3U
#EXTINF:-1 tvh-epg="disable" tvh-chnum="0" tvh-tags="tv|Ocio y cultura",Telemadrid
rtp://@239.0.0.25:8202
#EXTINF:-1 tvh-epg="disable" tvh-chnum="1" tvh-tags="tv|Ocio y cultura",La 1 HD
rtp://@239.0.0.185:8202
#EXTINF:-1 tvh-epg="disable" tvh-chnum="2" tvh-tags="tv|Ocio y cultura",La 2
rtp://@239.0.0.2:8202
#EXTINF:-1 tvh-epg="disable" tvh-chnum="3" tvh-tags="tv|Ocio y cultura",Antena 3 HD
rtp://@239.0.0.186:8202
I attach 2 images with same channel, one created manually and working perfectly and other created with playlist and failing.
Correct:
Fail:
Regards
History
Updated by Jaroslav Kysela over 8 years ago
- Status changed from New to Rejected
The '@' character in URL is useless. It separates the authentization from the address part, the URL is like this:
rtp://USER:PASSWD@IP:PORT
so
rtp://@IP:PORT is same as rtp://IP:PORT - tvh just removes the unused '@' character.
The interface modification is a dup of feature #3430 .