mptsd receives mpegts streams from udp/multicast or http and combines them into one multiple program stream that is suitable for outputing to DVB-C modulator. It is tested with Dektec DTE-3114 Quad QAM Modulator and it is used in production in couple of small DVB-C networks.
I can feed EPG from another external application
(via UDP unicast/multicast, transparent EPG/EIT)
Same for NIT table.
Map PIDS also SDT PMT not only via an algorithm but also via a re-mapping table
Make from a tv service a radio service by extracting just 1 audio pid.
1-2. At least to have an option to mute NIT and/or EPG/EIT.
At least to have the option to leave its parameters (PIDS) as-is. (transparent muxing)
(Any other suggestion welcomed, )
1-2. For example both features can be a single option by specifying transparent muxing on PID
(0x0010 and 0x0012) and then adding stream source for each of them.
If you want to mute NIT or EIT, you can simply change timeout value to -1 in your mptsd.conf.
I.E. to mute NIT, EIT, TOT, TDT:
[Timeouts]
pat = 100
pmt = 200
sdt = 500
nit = -1
eit = -1
tdt = -1
tot = -1
It would be nice if:
I can feed EPG from another external application (via UDP unicast/multicast, transparent EPG/EIT)
Same for NIT table.
Map PIDS also SDT PMT not only via an algorithm but also via a re-mapping table
Make from a tv service a radio service by extracting just 1 audio pid.
1-2. At least to have an option to mute NIT and/or EPG/EIT.
At least to have the option to leave its parameters (PIDS) as-is. (transparent muxing)
(Any other suggestion welcomed, )
1-2. For example both features can be a single option by specifying transparent muxing on PID (0x0010 and 0x0012) and then adding stream source for each of them.
Thanks.