mirror of
https://github.com/rofafor/vdr-plugin-iptv.git
synced 2023-10-10 13:37:03 +02:00
Added a note about recommended frequencies into README.
This commit is contained in:
parent
fd7a43d733
commit
b221a9a406
4
HISTORY
4
HISTORY
@ -94,3 +94,7 @@ VDR Plugin 'iptv' Revision History
|
|||||||
- Fixed pid scanner to set the existing video stream type
|
- Fixed pid scanner to set the existing video stream type
|
||||||
(Thanks to ua0lnj for reporting this one).
|
(Thanks to ua0lnj for reporting this one).
|
||||||
- Added optional patches to disable CA updates.
|
- Added optional patches to disable CA updates.
|
||||||
|
|
||||||
|
2009-xx-xx: Version 0.2.6
|
||||||
|
|
||||||
|
- Added a note about recommended frequencies into README.
|
||||||
|
26
README
26
README
@ -111,17 +111,17 @@ Configuration:
|
|||||||
|
|
||||||
- channels.conf
|
- channels.conf
|
||||||
|
|
||||||
TV4;IPTV:4:IPTV|S1P0|EXT|iptvstream.sh|0:P:0:0:680:0:0:4:0:0:0
|
TV4;IPTV:40:IPTV|S1P0|EXT|iptvstream.sh|0:P:0:0:680:0:0:4:0:0:0
|
||||||
TV3;IPTV:3:IPTV|S0P1|FILE|/video/stream.ts|5:P:0:514:670:2321:0:3:0:0:0
|
TV3;IPTV:30:IPTV|S0P1|FILE|/video/stream.ts|5:P:0:514:670:2321:0:3:0:0:0
|
||||||
TV2;IPTV:2:IPTV|S0P1|HTTP|127.0.0.1/TS/2|3000:P:0:513:660:2321:0:2:0:0:0
|
TV2;IPTV:20:IPTV|S0P1|HTTP|127.0.0.1/TS/2|3000:P:0:513:660:2321:0:2:0:0:0
|
||||||
TV1;IPTV:1:IPTV|S1P0|UDP|127.0.0.1|1234:P:0:512:650:2321:0:1:0:0:0
|
TV1;IPTV:10:IPTV|S1P0|UDP|127.0.0.1|1234:P:0:512:650:2321:0:1:0:0:0
|
||||||
^ ^ ^ ^ ^ ^ ^
|
^ ^ ^ ^ ^ ^ ^
|
||||||
| | | | | | Source type ("P")
|
| | | | | | Source type ("P")
|
||||||
| | | | | IP Port Number, File delay (ms), Script parameter
|
| | | | | IP Port Number, File delay (ms), Script parameter
|
||||||
| | | | IP Address, File location, Script location
|
| | | | IP Address, File location, Script location
|
||||||
| | | Protocol ("UDP", "HTTP", "FILE", "EXT")
|
| | | Protocol ("UDP", "HTTP", "FILE", "EXT")
|
||||||
| | Parameters ("S" Sid scan, "P" Pid scan, "0" disable, "1" enable)
|
| | Parameters ("S" Sid scan, "P" Pid scan, "0" disable, "1" enable)
|
||||||
| Plugin ID ("IPTV")
|
| Plugin ID ("IPTV")
|
||||||
Unique enumeration
|
Unique enumeration
|
||||||
|
|
||||||
- UDP multicast rules for iptables firewall
|
- UDP multicast rules for iptables firewall
|
||||||
@ -167,6 +167,10 @@ Notes:
|
|||||||
startup. If the fifo is found and succesfully opened, the device writes
|
startup. If the fifo is found and succesfully opened, the device writes
|
||||||
the current data stream into it. This can be used for debugging purposes.
|
the current data stream into it. This can be used for debugging purposes.
|
||||||
|
|
||||||
|
- Multiple channels with identical service id should have frequency
|
||||||
|
difference of 4 or greater. It's recommended to use frequencies in decades
|
||||||
|
(10, 20, 30, 40, ...) for all IPTV channel entries.
|
||||||
|
|
||||||
Acknowledgements:
|
Acknowledgements:
|
||||||
|
|
||||||
- The IPTV section filtering code is derived from Linux kernel.
|
- The IPTV section filtering code is derived from Linux kernel.
|
||||||
|
2
iptv.c
2
iptv.c
@ -20,7 +20,7 @@
|
|||||||
#error "VDR-1.6.0 API version or greater is required!"
|
#error "VDR-1.6.0 API version or greater is required!"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const char VERSION[] = "0.2.5";
|
static const char VERSION[] = "0.2.6";
|
||||||
static const char DESCRIPTION[] = trNOOP("Experience the IPTV");
|
static const char DESCRIPTION[] = trNOOP("Experience the IPTV");
|
||||||
|
|
||||||
class cPluginIptv : public cPlugin {
|
class cPluginIptv : public cPlugin {
|
||||||
|
Loading…
Reference in New Issue
Block a user