forked from Fazzani/xmltv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWebGrab++.log.txt
3946 lines (3703 loc) · 170 KB
/
WebGrab++.log.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
WebGrab+Plus/w MDB & REX Postprocess -- version V2.1
Jan van Straaten
Francis De Paemeleere
thanks to Paul Weterings and all the contributing users
--------------------------------------------------------------------------------
Job started at 24/09/2018 23:10:16
timezone=UTC+02:00 mapped with timezone_id "Europe/Athens"
found: /home/pi/wg++/siteini.pack/Tunisia/watania.tn.ini -- Revision 00
timezone=UTC+03:00 mapped with timezone_id "Europe/Moscow"
found: /home/pi/wg++/siteini.pack/International/bein.net.ini -- Revision 14
found: /home/pi/wg++/siteini.pack/Saudi Arabia/osn.com.ini -- Revision 07
found: /home/pi/wg++/siteini.pack/Ireland/eirsport.ie.ini -- Revision 00
processing /home/pi/wg++/guide.xmltv ...
Found existing channel (xmltv_id=Watania 1) in the config file
Found existing channel (xmltv_id=Watania 2) in the config file
Found existing channel (xmltv_id=HD1) in the config file
Found existing channel (xmltv_id=HD2) in the config file
Found existing channel (xmltv_id=HD3) in the config file
Found existing channel (xmltv_id=HD4) in the config file
Found existing channel (xmltv_id=HD5) in the config file
Found existing channel (xmltv_id=HD6) in the config file
Found existing channel (xmltv_id=HD7) in the config file
Found existing channel (xmltv_id=HD8) in the config file
Found existing channel (xmltv_id=HD9) in the config file
Found existing channel (xmltv_id=HD10) in the config file
Found existing channel (xmltv_id=SportsHD11) in the config file
Found existing channel (xmltv_id=SportsHD12) in the config file
Found existing channel (xmltv_id=SportsHD13) in the config file
Found existing channel (xmltv_id=SportsHD14) in the config file
Found existing channel (xmltv_id=SportsHD15) in the config file
Found existing channel (xmltv_id=SportsHD16) in the config file
Found existing channel (xmltv_id=SportsHD17) in the config file
Found existing channel (xmltv_id=News_ar) in the config file
Found existing channel (xmltv_id=SportsGlobalHD) in the config file
Found existing channel (xmltv_id=BS NBA) in the config file
Found existing channel (xmltv_id=4K) in the config file
Found existing channel (xmltv_id=OlympicChannel) in the config file
Found existing channel (xmltv_id=Global) in the config file
Found existing channel (xmltv_id=Spanish) in the config file
Found existing channel (xmltv_id=MoviesHD1) in the config file
Found existing channel (xmltv_id=MoviesHD2) in the config file
Found existing channel (xmltv_id=MoviesHD3) in the config file
Found existing channel (xmltv_id=MoviesHD4) in the config file
Found existing channel (xmltv_id=max1) in the config file
Found existing channel (xmltv_id=max2) in the config file
Found existing channel (xmltv_id=max3) in the config file
Found existing channel (xmltv_id=max4) in the config file
Found existing channel (xmltv_id=SeriesHD1) in the config file
Found existing channel (xmltv_id=SeriesHD2) in the config file
Found existing channel (xmltv_id=beJUNIOR) in the config file
Found existing channel (xmltv_id=fox_movies_hd) in the config file
Found existing channel (xmltv_id=starmovieshd) in the config file
Found existing channel (xmltv_id=starw_orld_hd) in the config file
Found existing channel (xmltv_id=NatGeo_HD) in the config file
Found existing channel (xmltv_id=NatGeoPeople_HD) in the config file
Found existing channel (xmltv_id=NatGeoWild_HD) in the config file
Found existing channel (xmltv_id=Baby_TV) in the config file
Found existing channel (xmltv_id=Jeem) in the config file
Found existing channel (xmltv_id=Baraem) in the config file
Found existing channel (xmltv_id=gourmet) in the config file
Found existing channel (xmltv_id=BoxOffice_HD1) in the config file
Found existing channel (xmltv_id=DTX) in the config file
Found existing channel (xmltv_id=CBeebies) in the config file
Found existing channel (xmltv_id=V_HD) in the config file
Found existing channel (xmltv_id=CNNHD) in the config file
Found existing channel (xmltv_id=TCM) in the config file
Found existing channel (xmltv_id=CartoonNetworkAR) in the config file
Found existing channel (xmltv_id=CartoonNetworkHD) in the config file
Found existing channel (xmltv_id=CartoonNetworkHindi) in the config file
Found existing channel (xmltv_id=HLN) in the config file
Found existing channel (xmltv_id=Boomerang) in the config file
Found existing channel (xmltv_id=DramaHD1) in the config file
Found existing channel (xmltv_id=Star_Movies_HD) in the config file
Found existing channel (xmltv_id=amc) in the config file
Found existing channel (xmltv_id=CBSreality) in the config file
Found existing channel (xmltv_id=FoxActMovHD) in the config file
Found existing channel (xmltv_id=FoxFamHD) in the config file
Found existing channel (xmltv_id=FXHD) in the config file
Found existing channel (xmltv_id=FoxNews) in the config file
Found existing channel (xmltv_id=AnimalPlanetHD) in the config file
Found existing channel (xmltv_id=DLife) in the config file
Found existing channel (xmltv_id=DreamWorks) in the config file
Found existing channel (xmltv_id=DKids) in the config file
Found existing channel (xmltv_id=DMAX) in the config file
Found existing channel (xmltv_id=OutdoorChannel) in the config file
Found existing channel (xmltv_id=Extreme) in the config file
Found existing channel (xmltv_id=TravelChannel) in the config file
Found existing channel (xmltv_id=HGTV) in the config file
Found existing channel (xmltv_id=OSN Movies HD) in the config file
Found existing channel (xmltv_id=OSN Movies First HD) in the config file
Found existing channel (xmltv_id=OSN Movies First HD +2h) in the config file
Found existing channel (xmltv_id=OSN Movies Action HD) in the config file
Found existing channel (xmltv_id=OSN Movies Action +2) in the config file
Found existing channel (xmltv_id=OSN Movies HD Premier) in the config file
Found existing channel (xmltv_id=OSN Movies +2h) in the config file
Found existing channel (xmltv_id=OSN Movies Thriller HD) in the config file
Found existing channel (xmltv_id=OSN Movies Thriller +2h) in the config file
Found existing channel (xmltv_id=OSN Movies Festival HD) in the config file
Found existing channel (xmltv_id=OSN Movies Kids HD) in the config file
Found existing channel (xmltv_id=OSN Movies Family HD) in the config file
Found existing channel (xmltv_id=OSN Movies Comedy HD) in the config file
Found existing channel (xmltv_id=OSN Movies Box Office 1 HD) in the config file
Found existing channel (xmltv_id=OSN Movies Box Office 2) in the config file
Found existing channel (xmltv_id=OSN Movies Box Office 3) in the config file
Found existing channel (xmltv_id=Sundance TV) in the config file
Found existing channel (xmltv_id=Star Movies HD) in the config file
Found existing channel (xmltv_id=Sony Max Middle East) in the config file
Found existing channel (xmltv_id=Star Gold) in the config file
Found existing channel (xmltv_id=Zee Cinema) in the config file
Found existing channel (xmltv_id=UTV Movies) in the config file
Found existing channel (xmltv_id=OSN Ya Hala Al Oula) in the config file
Found existing channel (xmltv_id=OSN Ya Hala Al Oula +2h) in the config file
Found existing channel (xmltv_id=OSN Ya Hala HD) in the config file
Found existing channel (xmltv_id=OSN Yahala Cinema HD) in the config file
Found existing channel (xmltv_id=Series Channel) in the config file
Found existing channel (xmltv_id=Series +2) in the config file
Found existing channel (xmltv_id=Al Yawm) in the config file
Found existing channel (xmltv_id=Al Safwa) in the config file
Found existing channel (xmltv_id=Fann) in the config file
Found existing channel (xmltv_id=Cinema 1) in the config file
Found existing channel (xmltv_id=Cinema 2) in the config file
Found existing channel (xmltv_id=Music Now) in the config file
Found existing channel (xmltv_id=Hekayat) in the config file
Found existing channel (xmltv_id=Hekayat 2) in the config file
Found existing channel (xmltv_id=ART Aflam 1) in the config file
Found existing channel (xmltv_id=ART Aflam 2) in the config file
Found existing channel (xmltv_id=ART Cinema) in the config file
Found existing channel (xmltv_id=AD Drama + HD) in the config file
Found existing channel (xmltv_id=OSN Series First HD) in the config file
Found existing channel (xmltv_id=OSN First HBO HD) in the config file
Found existing channel (xmltv_id=OSN Series HD) in the config file
Found existing channel (xmltv_id=OSN Series Comedy HD) in the config file
Found existing channel (xmltv_id=OSN Series Comedy HD +2h) in the config file
Found existing channel (xmltv_id=Comedy Central) in the config file
Found existing channel (xmltv_id=Syfy HD) in the config file
Found existing channel (xmltv_id=Star World HD) in the config file
Found existing channel (xmltv_id=TLC HD) in the config file
Found existing channel (xmltv_id=E! Entertainment HD) in the config file
Found existing channel (xmltv_id=BBC First HD) in the config file
Found existing channel (xmltv_id=ITV Choice HD) in the config file
Found existing channel (xmltv_id=Food Network HD) in the config file
Found existing channel (xmltv_id=Fine Living) in the config file
Found existing channel (xmltv_id=Fashion TV HD) in the config file
Found existing channel (xmltv_id=Travel Channel) in the config file
Found existing channel (xmltv_id=\\u0026 TV) in the config file
Found existing channel (xmltv_id=Star Plus Middle East) in the config file
Found existing channel (xmltv_id=Zee TV) in the config file
Found existing channel (xmltv_id=SET Middle East) in the config file
Found existing channel (xmltv_id=Colors) in the config file
Found existing channel (xmltv_id=Hum TV Middle East) in the config file
Found existing channel (xmltv_id=Rishtey TV) in the config file
Found existing channel (xmltv_id=Life OK Middle East) in the config file
Found existing channel (xmltv_id=Sab TV) in the config file
Found existing channel (xmltv_id=Ary Digital TV) in the config file
Found existing channel (xmltv_id=GEO TV) in the config file
Found existing channel (xmltv_id=Masala TV) in the config file
Found existing channel (xmltv_id=Kiran TV) in the config file
Found existing channel (xmltv_id=Urdu 1) in the config file
Found existing channel (xmltv_id=Sun TV) in the config file
Found existing channel (xmltv_id=Star Vijay International) in the config file
Found existing channel (xmltv_id=Asianet) in the config file
Found existing channel (xmltv_id=Surya TV) in the config file
Found existing channel (xmltv_id=Udaya TV) in the config file
Found existing channel (xmltv_id=Gemini TV) in the config file
Found existing channel (xmltv_id=Star Jalsha) in the config file
Found existing channel (xmltv_id=Star Pravah) in the config file
Found existing channel (xmltv_id=MTV Live HD) in the config file
Found existing channel (xmltv_id=VH1) in the config file
Found existing channel (xmltv_id=Trace Urban) in the config file
Found existing channel (xmltv_id=Sony MIX) in the config file
Found existing channel (xmltv_id=MTV India) in the config file
Found existing channel (xmltv_id=Bindaas) in the config file
Found existing channel (xmltv_id=Disney HD) in the config file
Found existing channel (xmltv_id=Disney XD) in the config file
Found existing channel (xmltv_id=Disney Junior) in the config file
Found existing channel (xmltv_id=Nickelodeon HD) in the config file
Found existing channel (xmltv_id=Nick Jr) in the config file
Found existing channel (xmltv_id=NickToons) in the config file
Found existing channel (xmltv_id=OSN Kid Zone TV) in the config file
Found existing channel (xmltv_id=Baby TV Europe) in the config file
Found existing channel (xmltv_id=OSN News) in the config file
Found existing channel (xmltv_id=Sky News HD) in the config file
Found existing channel (xmltv_id=BBC World) in the config file
Found existing channel (xmltv_id=Fox News) in the config file
Found existing channel (xmltv_id=CNBC) in the config file
Found existing channel (xmltv_id=Bloomberg) in the config file
Found existing channel (xmltv_id=CCTV News) in the config file
Found existing channel (xmltv_id=France 24 English) in the config file
Found existing channel (xmltv_id=NHK World TV) in the config file
Found existing channel (xmltv_id=Dunya News) in the config file
Found existing channel (xmltv_id=ARY News) in the config file
Found existing channel (xmltv_id=Geo News) in the config file
Found existing channel (xmltv_id=ABP News India) in the config file
Found existing channel (xmltv_id=Aaj Tak) in the config file
Found existing channel (xmltv_id=Times Now) in the config file
Found existing channel (xmltv_id=NDTV 24x7) in the config file
Found existing channel (xmltv_id=Asianet News) in the config file
Found existing channel (xmltv_id=Sky News Arabia HD) in the config file
Found existing channel (xmltv_id=Sky News Arabia) in the config file
Found existing channel (xmltv_id=Alarabiya) in the config file
Found existing channel (xmltv_id=France 24) in the config file
Found existing channel (xmltv_id=CCTV Arabic) in the config file
Found existing channel (xmltv_id=Discovery HD) in the config file
Found existing channel (xmltv_id=Discovery Family HD) in the config file
Found existing channel (xmltv_id=Discovery Science HD) in the config file
Found existing channel (xmltv_id=IDX HD) in the config file
Found existing channel (xmltv_id=Crime \\u0026 Investigation Network) in the config file
Found existing channel (xmltv_id=History HD) in the config file
Found existing channel (xmltv_id=H2 HD) in the config file
Found existing channel (xmltv_id=Animal Planet HD) in the config file
Found existing channel (xmltv_id=Nat Geo HD) in the config file
Found existing channel (xmltv_id=Nat Geo Wild HD) in the config file
Found existing channel (xmltv_id=Nat Geo People HD) in the config file
Found existing channel (xmltv_id=OSN Sports Action 1 HD) in the config file
Found existing channel (xmltv_id=OSN Sports Action 2 HD) in the config file
Found existing channel (xmltv_id=OSN Sports 3 HD) in the config file
Found existing channel (xmltv_id=OSN Sports 4 HD) in the config file
Found existing channel (xmltv_id=OSN Sports 5 HD) in the config file
Found existing channel (xmltv_id=OSN WWE Network HD) in the config file
Found existing channel (xmltv_id=OSN Sports Cricket HD) in the config file
Found existing channel (xmltv_id=Ten Cricket International) in the config file
Found existing channel (xmltv_id=OSN Fight Network HD) in the config file
Found existing channel (xmltv_id=Fuel TV) in the config file
Found existing channel (xmltv_id=Ginx Esports TV HD) in the config file
Found existing channel (xmltv_id=AD Sports 3 HD) in the config file
Found existing channel (xmltv_id=AD Sports 4 HD) in the config file
Found existing channel (xmltv_id=AD Sports 5 HD) in the config file
Found existing channel (xmltv_id=AD Sports 6 HD) in the config file
Found existing channel (xmltv_id=Edge Sport HD) in the config file
Found existing channel (xmltv_id=Dubai Sports 4 HD) in the config file
Found existing channel (xmltv_id=Dubai Sports 2 HD) in the config file
Found existing channel (xmltv_id=TFC) in the config file
Found existing channel (xmltv_id=ABS-CBN Sports+Action) in the config file
Found existing channel (xmltv_id=Cinema One Global) in the config file
Found existing channel (xmltv_id=ANC) in the config file
Found existing channel (xmltv_id=DZMM Teleradyo) in the config file
Found existing channel (xmltv_id=DWRR 101.9) in the config file
Found existing channel (xmltv_id=Viva TV) in the config file
Found existing channel (xmltv_id=Kapatid TV5) in the config file
Found existing channel (xmltv_id=Aksyon TV) in the config file
Found existing channel (xmltv_id=Cine Mo) in the config file
Found existing channel (xmltv_id=Lifestyle Network) in the config file
Found existing channel (xmltv_id=GMA Pinoy TV) in the config file
Found existing channel (xmltv_id=GMA Life TV) in the config file
Found existing channel (xmltv_id=GMA News TV) in the config file
Found existing channel (xmltv_id=MBC 1) in the config file
Found existing channel (xmltv_id=MBC 4) in the config file
Found existing channel (xmltv_id=MBC Drama) in the config file
Found existing channel (xmltv_id=MBC 2) in the config file
Found existing channel (xmltv_id=MBC MAX) in the config file
Found existing channel (xmltv_id=MBC Action) in the config file
Found existing channel (xmltv_id=Setanta) in the config file
.................................................................................................................................................................................................................................................
i=index .=same c=change g=gab r=replace n=new
Group (0) :
update requested for - 239 - out of - 239 - channels for 2 day(s)
( 1/239 ) WATANIA.TN -- chan. (xmltv_id=Watania 1) -- mode Incremental
iinnnnnnnn.cccccccccccc...ccccccc..gcccnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
0.01 sec/update
( 2/239 ) WATANIA.TN -- chan. (xmltv_id=Watania 2) -- mode Incremental
iinnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
0.01 sec/update
( 3/239 ) BEIN.NET -- chan. (xmltv_id=HD1) -- mode Incremental
ii...........................nnnnnnnnnnnnnnnnnnnnnn
0.01 sec/update
Summary for update of HD1
missing shows added 0
changed shows updated 0
new shows added 22
unchanged shows inspected 27
total after update 49
elapstime / updated show 0.02 seconds
( 4/239 ) BEIN.NET -- chan. (xmltv_id=HD2) -- mode Incremental
iic
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 23:46:00 stop = 26/09/2018 01:30:00 title = Crystal Palace vs Newcastle United
Replaces ----- start = 25/09/2018 23:45:00 stop = 26/09/2018 01:30:00 title = Crystal Palace vs Newcastle United
nnnnnnnnnnnnnnnnnnnn
0.01 sec/update
Summary for update of HD2
missing shows added 0
changed shows updated 1
new shows added 20
unchanged shows inspected 0
total after update 21
elapstime / updated show 0.02 seconds
( 5/239 ) BEIN.NET -- chan. (xmltv_id=HD3) -- mode Incremental
ii.....c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 03:45:00 stop = 25/09/2018 05:31:00 title = Rayo Vallecano vs Deportivo Alavés
Replaces ----- start = 25/09/2018 03:45:00 stop = 25/09/2018 05:30:00 title = Rayo Vallecano vs Deportivo Alavés
Replaces ----- start = 25/09/2018 05:30:00 stop = 25/09/2018 06:30:00 title = La Liga Highlights 2018/2019 Week 5
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 05:31:00 stop = 25/09/2018 06:30:00 title = La Liga Highlights 2018/2019 Week 5
Replaces ----- start = 25/09/2018 05:30:00 stop = 25/09/2018 06:30:00 title = La Liga Highlights 2018/2019 Week 5
.............n
0.02 sec/update
Summary for update of HD3
missing shows added 0
changed shows updated 2
new shows added 1
unchanged shows inspected 18
total after update 21
elapstime / updated show 0.02 seconds
( 6/239 ) BEIN.NET -- chan. (xmltv_id=HD4) -- mode Incremental
ii....c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 05:00:00 stop = 25/09/2018 06:50:00 title = Parma vs Cagliari
Replaces ----- start = 25/09/2018 05:00:00 stop = 25/09/2018 06:45:00 title = Parma vs Cagliari
Replaces ----- start = 25/09/2018 06:45:00 stop = 25/09/2018 08:30:00 title = Sassuolo vs Empoli
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 06:50:00 stop = 25/09/2018 08:30:00 title = Sassuolo vs Empoli
Replaces ----- start = 25/09/2018 06:45:00 stop = 25/09/2018 08:30:00 title = Sassuolo vs Empoli
.c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 09:00:00 stop = 25/09/2018 10:43:00 title = Torino vs Napoli
Replaces ----- start = 25/09/2018 09:00:00 stop = 25/09/2018 10:45:00 title = Torino vs Napoli
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 10:43:00 stop = 25/09/2018 12:30:00 title = Bologna vs Roma
Replaces ----- start = 25/09/2018 09:00:00 stop = 25/09/2018 10:45:00 title = Torino vs Napoli
Replaces ----- start = 25/09/2018 10:45:00 stop = 25/09/2018 12:30:00 title = Bologna vs Roma
...c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 17:00:00 stop = 25/09/2018 17:30:00 title = UEFA Europa League Highlights Show 2018/2019
Replaces ----- start = 25/09/2018 17:00:00 stop = 25/09/2018 18:00:00 title = UEFA Europa League Highlights Show 2018/2019
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 17:30:00 stop = 25/09/2018 18:00:00 title = FOOTBALLUEFANATIONSLEAGUE2018GOALSMD1&2
Replaces ----- start = 25/09/2018 17:00:00 stop = 25/09/2018 18:00:00 title = UEFA Europa League Highlights Show 2018/2019
......n
0.02 sec/update
Summary for update of HD4
missing shows added 0
changed shows updated 6
new shows added 1
unchanged shows inspected 14
total after update 21
elapstime / updated show 0.02 seconds
( 7/239 ) BEIN.NET -- chan. (xmltv_id=HD5) -- mode Incremental
ii...............c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 19:00:00 stop = 25/09/2018 21:28:00 title = SV Werder Bremen vs Hertha Berlin
Replaces ----- start = 25/09/2018 19:00:00 stop = 25/09/2018 21:30:00 title = SV Werder Bremen vs Hertha Berlin
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:28:00 stop = 26/09/2018 00:00:00 title = FC Bayern München vs FC Augsburg
Replaces ----- start = 25/09/2018 19:00:00 stop = 25/09/2018 21:30:00 title = SV Werder Bremen vs Hertha Berlin
Replaces ----- start = 25/09/2018 21:30:00 stop = 26/09/2018 00:00:00 title = FC Bayern München vs FC Augsburg
nnnnnnnnnnnnnnn
0.02 sec/update
Summary for update of HD5
missing shows added 0
changed shows updated 2
new shows added 15
unchanged shows inspected 15
total after update 32
elapstime / updated show 0.02 seconds
( 8/239 ) BEIN.NET -- chan. (xmltv_id=HD6) -- mode Incremental
iic
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 23:00:00 stop = 26/09/2018 00:45:00 title = Guingamp vs Bordeaux
Replaces ----- start = 25/09/2018 23:00:00 stop = 26/09/2018 00:45:00 title = Strasbourg vs Amiens
nnnnnnnnnnnnnnnnnnn
0.01 sec/update
Summary for update of HD6
missing shows added 0
changed shows updated 1
new shows added 19
unchanged shows inspected 0
total after update 20
elapstime / updated show 0.02 seconds
( 9/239 ) BEIN.NET -- chan. (xmltv_id=HD7) -- mode Incremental
ii..........c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 13:20:00 stop = 25/09/2018 15:08:00 title = Boca vs River
Replaces ----- start = 25/09/2018 13:20:00 stop = 25/09/2018 15:05:00 title = Boca vs River
Replaces ----- start = 25/09/2018 15:05:00 stop = 25/09/2018 15:35:00 title = NBA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 15:08:00 stop = 25/09/2018 15:35:00 title = NBA
Replaces ----- start = 25/09/2018 15:05:00 stop = 25/09/2018 15:35:00 title = NBA
.c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 17:40:00 stop = 25/09/2018 19:25:00 title = Bursaspor Medipol vs Basaksehir Fk
Replaces ----- start = 25/09/2018 17:40:00 stop = 25/09/2018 19:25:00 title = Fenerbache vs Besiktas
..c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 23:00:00 stop = 26/09/2018 00:00:00 title = Cycling Tour De Hongrie
Replaces ----- start = 25/09/2018 23:00:00 stop = 25/09/2018 23:59:00 title = Cycling Tour De Hongrie
nnnnnnnnnnnnnnnn
0.01 sec/update
Summary for update of HD7
missing shows added 0
changed shows updated 4
new shows added 16
unchanged shows inspected 13
total after update 33
elapstime / updated show 0.02 seconds
( 10/239 ) BEIN.NET -- chan. (xmltv_id=HD8) -- mode Incremental
iic
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 00:00:00 stop = 25/09/2018 00:48:00 title = Coppa Shell Race 1
Replaces ----- start = 25/09/2018 00:00:00 stop = 25/09/2018 00:45:00 title = Coppa Shell Race 1
Replaces ----- start = 25/09/2018 00:45:00 stop = 25/09/2018 01:30:00 title = Coppa Shell Race 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 00:48:00 stop = 25/09/2018 01:33:00 title = Coppa Shell Race 2
Replaces ----- start = 25/09/2018 00:45:00 stop = 25/09/2018 01:30:00 title = Coppa Shell Race 2
Replaces ----- start = 25/09/2018 01:30:00 stop = 25/09/2018 02:15:00 title = Trofeo Pirelli Race 1
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 01:33:00 stop = 25/09/2018 02:22:00 title = Trofeo Pirelli Race 1
Replaces ----- start = 25/09/2018 01:30:00 stop = 25/09/2018 02:15:00 title = Trofeo Pirelli Race 1
Replaces ----- start = 25/09/2018 02:15:00 stop = 25/09/2018 03:00:00 title = Trofeo Pirelli Race 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 02:22:00 stop = 25/09/2018 03:11:00 title = Trofeo Pirelli Race 2
Replaces ----- start = 25/09/2018 02:15:00 stop = 25/09/2018 03:00:00 title = Trofeo Pirelli Race 2
Replaces ----- start = 25/09/2018 03:00:00 stop = 25/09/2018 03:30:00 title = The Insiders Series 2018
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 03:11:00 stop = 25/09/2018 03:39:00 title = The Insiders Series 2018
Replaces ----- start = 25/09/2018 03:00:00 stop = 25/09/2018 03:30:00 title = The Insiders Series 2018
Replaces ----- start = 25/09/2018 03:30:00 stop = 25/09/2018 04:00:00 title = 500 Great Goals
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 03:39:00 stop = 25/09/2018 04:06:00 title = 500 Great Goals
Replaces ----- start = 25/09/2018 03:30:00 stop = 25/09/2018 04:00:00 title = 500 Great Goals
Replaces ----- start = 25/09/2018 04:00:00 stop = 25/09/2018 06:00:00 title = China vs USA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 04:06:00 stop = 25/09/2018 05:30:00 title = China vs USA
Replaces ----- start = 25/09/2018 04:00:00 stop = 25/09/2018 06:00:00 title = China vs USA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 05:30:00 stop = 25/09/2018 07:15:00 title = Nigeria vs Turkey
Replaces ----- start = 25/09/2018 04:00:00 stop = 25/09/2018 06:00:00 title = China vs USA
Replaces ----- start = 25/09/2018 06:00:00 stop = 25/09/2018 08:00:00 title = Nigeria vs Turkey
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 07:15:00 stop = 25/09/2018 08:50:00 title = Saul Alvarez vs Gennady Golovkin II
Replaces ----- start = 25/09/2018 06:00:00 stop = 25/09/2018 08:00:00 title = Nigeria vs Turkey
Replaces ----- start = 25/09/2018 08:00:00 stop = 25/09/2018 09:30:00 title = Saul Alvarez vs Gennady Golovkin II
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 08:50:00 stop = 25/09/2018 09:25:00 title = Race 1
Replaces ----- start = 25/09/2018 08:00:00 stop = 25/09/2018 09:30:00 title = Saul Alvarez vs Gennady Golovkin II
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 09:25:00 stop = 25/09/2018 10:05:00 title = Race 2
Replaces ----- start = 25/09/2018 08:00:00 stop = 25/09/2018 09:30:00 title = Saul Alvarez vs Gennady Golovkin II
Replaces ----- start = 25/09/2018 09:30:00 stop = 25/09/2018 10:30:00 title = Race 1
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 10:05:00 stop = 25/09/2018 11:30:00 title = China vs USA
Replaces ----- start = 25/09/2018 09:30:00 stop = 25/09/2018 10:30:00 title = Race 1
Replaces ----- start = 25/09/2018 10:30:00 stop = 25/09/2018 11:30:00 title = Race 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 11:30:00 stop = 25/09/2018 12:19:00 title = Trofeo Pirelli Race 1
Replaces ----- start = 25/09/2018 11:30:00 stop = 25/09/2018 13:30:00 title = China vs USA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 12:19:00 stop = 25/09/2018 13:15:00 title = Trofeo Pirelli Race 2
Replaces ----- start = 25/09/2018 11:30:00 stop = 25/09/2018 13:30:00 title = China vs USA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 13:15:00 stop = 25/09/2018 13:45:00 title = FAST ZONE 2018
Replaces ----- start = 25/09/2018 11:30:00 stop = 25/09/2018 13:30:00 title = China vs USA
Replaces ----- start = 25/09/2018 13:30:00 stop = 25/09/2018 15:30:00 title = Nigeria vs Turkey
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 13:45:00 stop = 25/09/2018 15:30:00 title = Nigeria vs Turkey
Replaces ----- start = 25/09/2018 13:30:00 stop = 25/09/2018 15:30:00 title = Nigeria vs Turkey
.c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 15:55:00 stop = 25/09/2018 17:54:00 title = Senegal vs China
Replaces ----- start = 25/09/2018 15:55:00 stop = 25/09/2018 17:55:00 title = Senegal vs China
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 17:54:00 stop = 25/09/2018 19:25:00 title = Barcelona vs Veszprem
Replaces ----- start = 25/09/2018 15:55:00 stop = 25/09/2018 17:55:00 title = Senegal vs China
Replaces ----- start = 25/09/2018 17:55:00 stop = 25/09/2018 19:25:00 title = Barcelona vs Veszprem
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 19:25:00 stop = 25/09/2018 21:26:00 title = Fc Koln vs Ingolstadt
Replaces ----- start = 25/09/2018 19:25:00 stop = 25/09/2018 21:30:00 title = Fc Koln vs Ingolstadt
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:26:00 stop = 25/09/2018 21:55:00 title = Sporting Greats
Replaces ----- start = 25/09/2018 19:25:00 stop = 25/09/2018 21:30:00 title = Fc Koln vs Ingolstadt
Replaces ----- start = 25/09/2018 21:30:00 stop = 25/09/2018 21:55:00 title = Sporting Greats
nnnnnnnnnnnnnnnnn
0.02 sec/update
Summary for update of HD8
missing shows added 0
changed shows updated 20
new shows added 17
unchanged shows inspected 1
total after update 38
elapstime / updated show 0.02 seconds
( 11/239 ) BEIN.NET -- chan. (xmltv_id=HD9) -- mode Incremental
iic
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 23:45:00 stop = 26/09/2018 00:15:00 title = Sporting Greats
Replaces ----- start = 25/09/2018 23:45:00 stop = 26/09/2018 01:00:00 title = Sporting Greats
c
epg correction :
CHANGED show corrected,
show with ---- start = 26/09/2018 00:15:00 stop = 26/09/2018 01:15:00 title = Best of US Open 2018
Replaces ----- start = 25/09/2018 23:45:00 stop = 26/09/2018 01:00:00 title = Sporting Greats
nnnnnnnnnnnnn
0.01 sec/update
Summary for update of HD9
missing shows added 0
changed shows updated 2
new shows added 13
unchanged shows inspected 0
total after update 15
elapstime / updated show 0.02 seconds
( 12/239 ) BEIN.NET -- chan. (xmltv_id=HD10) -- mode Incremental
ii
no shows in indexpage!
( 13/239 ) BEIN.NET -- chan. (xmltv_id=SportsHD11) -- mode Incremental
ii...............................c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 20:30:00 stop = 25/09/2018 21:15:00 title = Sports Hub 2018/19
Replaces ----- start = 25/09/2018 20:30:00 stop = 25/09/2018 21:00:00 title = Sports Hub 2018/19
Replaces ----- start = 25/09/2018 21:00:00 stop = 25/09/2018 21:45:00 title = EPL News
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:15:00 stop = 25/09/2018 21:45:00 title = EPL News
Replaces ----- start = 25/09/2018 21:00:00 stop = 25/09/2018 21:45:00 title = EPL News
.nnnnnnnnnnnnnnnnnnnnnnnnnnnnn
0.01 sec/update
Summary for update of SportsHD11
missing shows added 0
changed shows updated 2
new shows added 29
unchanged shows inspected 32
total after update 63
elapstime / updated show 0.02 seconds
( 14/239 ) BEIN.NET -- chan. (xmltv_id=SportsHD12) -- mode Incremental
ii........c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 08:00:00 stop = 25/09/2018 10:00:00 title = Detroit Lions vs New England Patriots
Replaces ----- start = 25/09/2018 08:00:00 stop = 25/09/2018 11:00:00 title = Detroit Lions vs New England Patriots
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 10:00:00 stop = 25/09/2018 11:05:00 title = UEFA Europa League Highlights 2018/19
Replaces ----- start = 25/09/2018 08:00:00 stop = 25/09/2018 11:00:00 title = Detroit Lions vs New England Patriots
Replaces ----- start = 25/09/2018 11:00:00 stop = 25/09/2018 11:15:00 title = The Premier League Show 2018/19
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 11:05:00 stop = 25/09/2018 11:15:00 title = The Premier League Show 2018/19
Replaces ----- start = 25/09/2018 11:00:00 stop = 25/09/2018 11:15:00 title = The Premier League Show 2018/19
.c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 12:15:00 stop = 25/09/2018 14:00:00 title = QPR vs Norwich City
Replaces ----- start = 25/09/2018 12:15:00 stop = 25/09/2018 15:45:00 title = QPR vs Norwich City
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 14:00:00 stop = 25/09/2018 15:45:00 title = Burnley vs A.F.C. Bournemouth
Replaces ----- start = 25/09/2018 12:15:00 stop = 25/09/2018 15:45:00 title = QPR vs Norwich City
.c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 16:45:00 stop = 25/09/2018 17:40:00 title = French Ligue 1 Highlights 2018/19
Replaces ----- start = 25/09/2018 16:45:00 stop = 25/09/2018 17:45:00 title = French Ligue 1 Highlights 2018/19
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 17:40:00 stop = 25/09/2018 19:30:00 title = Aston Villa vs Sheffield Wednesday
Replaces ----- start = 25/09/2018 16:45:00 stop = 25/09/2018 17:45:00 title = French Ligue 1 Highlights 2018/19
Replaces ----- start = 25/09/2018 17:45:00 stop = 25/09/2018 19:30:00 title = Aston Villa vs Sheffield Wednesday
.c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:10:00 stop = 25/09/2018 21:19:00 title = The Premier League Show 2018/19
Replaces ----- start = 25/09/2018 21:10:00 stop = 25/09/2018 21:35:00 title = The Premier League Show 2018/19
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:19:00 stop = 25/09/2018 21:50:00 title = Footbrazil 2018
Replaces ----- start = 25/09/2018 21:10:00 stop = 25/09/2018 21:35:00 title = The Premier League Show 2018/19
Replaces ----- start = 25/09/2018 21:35:00 stop = 26/09/2018 00:00:00 title = West Bromwich Albion vs Crystal Palace
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:50:00 stop = 26/09/2018 00:00:00 title = West Bromwich Albion vs Crystal Palace
Replaces ----- start = 25/09/2018 21:35:00 stop = 26/09/2018 00:00:00 title = West Bromwich Albion vs Crystal Palace
nnnnnnnnnnnnnnn
0.02 sec/update
Summary for update of SportsHD12
missing shows added 0
changed shows updated 10
new shows added 15
unchanged shows inspected 11
total after update 36
elapstime / updated show 0.02 seconds
( 15/239 ) BEIN.NET -- chan. (xmltv_id=SportsHD13) -- mode Incremental
iic
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 00:00:00 stop = 25/09/2018 02:00:00 title = D. Gavrilova AUS v J. Ostapenko LAT Tennis WTA Wuhan
Replaces ----- start = 25/09/2018 00:00:00 stop = 25/09/2018 02:00:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 02:00:00 stop = 25/09/2018 04:00:00 title = J. Konta GBR v A. Barty AUS Tennis WTA Wuhan
Replaces ----- start = 25/09/2018 02:00:00 stop = 25/09/2018 04:00:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 04:00:00 stop = 25/09/2018 06:00:00 title = D. Gavrilova AUS v J. Ostapenko LAT Tennis WTA Wuhan
Replaces ----- start = 25/09/2018 04:00:00 stop = 25/09/2018 06:00:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 06:00:00 stop = 25/09/2018 08:00:00 title = Rebecca Peterson vs Caroline Wozniacki
Replaces ----- start = 25/09/2018 06:00:00 stop = 25/09/2018 08:00:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 08:00:00 stop = 25/09/2018 10:00:00 title = Angelique Kerber vs Madison Keys
Replaces ----- start = 25/09/2018 08:00:00 stop = 25/09/2018 10:00:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 10:00:00 stop = 25/09/2018 12:00:00 title = Aleksandra Krunic vs Petra Kvitova
Replaces ----- start = 25/09/2018 10:00:00 stop = 25/09/2018 12:00:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 12:00:00 stop = 25/09/2018 14:30:00 title = Karolina Pliskova vs Qiang Wang
Replaces ----- start = 25/09/2018 12:00:00 stop = 25/09/2018 14:30:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 14:30:00 stop = 25/09/2018 16:30:00 title = Katerina Sinikova vs Caroline Garcia
Replaces ----- start = 25/09/2018 14:30:00 stop = 25/09/2018 16:30:00 title = Tennis WTA Wuhan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 16:30:00 stop = 25/09/2018 18:30:00 title = Simona Halep vs Dominika Cibulkova
Replaces ----- start = 25/09/2018 16:30:00 stop = 25/09/2018 18:30:00 title = Tennis WTA Wuhan
.c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 19:00:00 stop = 25/09/2018 21:00:00 title = Angelique Kerber vs Madison Keys
Replaces ----- start = 25/09/2018 19:00:00 stop = 25/09/2018 21:00:00 title = Tennis WTA Wuhan
..nnnnnnnnnnnnn
0.02 sec/update
Summary for update of SportsHD13
missing shows added 0
changed shows updated 10
new shows added 13
unchanged shows inspected 3
total after update 26
elapstime / updated show 0.02 seconds
( 16/239 ) BEIN.NET -- chan. (xmltv_id=SportsHD14) -- mode Incremental
iic
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 23:30:00 stop = 26/09/2018 01:05:00 title = LE DECRASSAGE DE LUIS
Replaces ----- start = 25/09/2018 23:30:00 stop = 26/09/2018 01:15:00 title = LE DECRASSAGE DE LUIS
c
epg correction :
CHANGED show corrected,
show with ---- start = 26/09/2018 01:05:00 stop = 26/09/2018 02:10:00 title = Label Boxe
Replaces ----- start = 25/09/2018 23:30:00 stop = 26/09/2018 01:15:00 title = LE DECRASSAGE DE LUIS
nnnnnnnnnnnnnnnn
0.02 sec/update
Summary for update of SportsHD14
missing shows added 0
changed shows updated 2
new shows added 16
unchanged shows inspected 0
total after update 18
elapstime / updated show 0.02 seconds
( 17/239 ) BEIN.NET -- chan. (xmltv_id=SportsHD15) -- mode Incremental
ii..c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 01:00:00 stop = 25/09/2018 03:00:00 title = LIGUE 2
Replaces ----- start = 25/09/2018 01:00:00 stop = 25/09/2018 07:00:00 title = LIGUE 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 03:00:00 stop = 25/09/2018 04:40:00 title = SERIE a
Replaces ----- start = 25/09/2018 01:00:00 stop = 25/09/2018 07:00:00 title = LIGUE 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 04:40:00 stop = 25/09/2018 05:30:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 01:00:00 stop = 25/09/2018 07:00:00 title = LIGUE 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 05:30:00 stop = 25/09/2018 06:15:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 01:00:00 stop = 25/09/2018 07:00:00 title = LIGUE 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 06:15:00 stop = 25/09/2018 07:00:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 01:00:00 stop = 25/09/2018 07:00:00 title = LIGUE 2
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 07:00:00 stop = 25/09/2018 07:45:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 07:00:00 stop = 25/09/2018 08:40:00 title = FOOTBALL LEAGUE
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 07:45:00 stop = 25/09/2018 09:00:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 07:00:00 stop = 25/09/2018 08:40:00 title = FOOTBALL LEAGUE
Replaces ----- start = 25/09/2018 08:40:00 stop = 25/09/2018 09:25:00 title = CA SE PASSE SUR BEIN SPORTS
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 09:00:00 stop = 25/09/2018 11:30:00 title = LIGA
Replaces ----- start = 25/09/2018 08:40:00 stop = 25/09/2018 09:25:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 09:25:00 stop = 25/09/2018 10:15:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 10:15:00 stop = 25/09/2018 11:00:00 title = CA SE PASSE SUR BEIN SPORTS
Replaces ----- start = 25/09/2018 11:00:00 stop = 25/09/2018 13:00:00 title = BUNDESLIGA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 11:30:00 stop = 25/09/2018 12:00:00 title = This Is Paris
Replaces ----- start = 25/09/2018 11:00:00 stop = 25/09/2018 13:00:00 title = BUNDESLIGA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 12:00:00 stop = 25/09/2018 12:30:00 title = CLUB EUROPE GIGA LIGA
Replaces ----- start = 25/09/2018 11:00:00 stop = 25/09/2018 13:00:00 title = BUNDESLIGA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 12:30:00 stop = 25/09/2018 13:00:00 title = CLUB EUROPE TUTTA SERIE A
Replaces ----- start = 25/09/2018 11:00:00 stop = 25/09/2018 13:00:00 title = BUNDESLIGA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 13:00:00 stop = 25/09/2018 13:30:00 title = CLUB EUROPE DIE BULISCHAU
Replaces ----- start = 25/09/2018 13:00:00 stop = 25/09/2018 15:00:00 title = LIGA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 13:30:00 stop = 25/09/2018 14:30:00 title = CLUB EUROPE
Replaces ----- start = 25/09/2018 13:00:00 stop = 25/09/2018 15:00:00 title = LIGA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 14:30:00 stop = 25/09/2018 16:30:00 title = SERIE a
Replaces ----- start = 25/09/2018 13:00:00 stop = 25/09/2018 15:00:00 title = LIGA
Replaces ----- start = 25/09/2018 15:00:00 stop = 25/09/2018 17:00:00 title = SERIE a
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 16:30:00 stop = 25/09/2018 18:30:00 title = LIGA
Replaces ----- start = 25/09/2018 15:00:00 stop = 25/09/2018 17:00:00 title = SERIE a
Replaces ----- start = 25/09/2018 17:00:00 stop = 25/09/2018 18:40:00 title = BUNDESLIGA
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 18:30:00 stop = 25/09/2018 20:45:00 title = BUNDESLIGA
Replaces ----- start = 25/09/2018 17:00:00 stop = 25/09/2018 18:40:00 title = BUNDESLIGA
Replaces ----- start = 25/09/2018 18:40:00 stop = 25/09/2018 19:45:00 title = LIGUE DES CHAMPIONS MASCULINE
Replaces ----- start = 25/09/2018 19:45:00 stop = 25/09/2018 21:50:00 title = CHAMPIONS LEAGUE J01
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 20:45:00 stop = 25/09/2018 21:15:00 title = This Is Paris
Replaces ----- start = 25/09/2018 19:45:00 stop = 25/09/2018 21:50:00 title = CHAMPIONS LEAGUE J01
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:15:00 stop = 25/09/2018 21:25:00 title = CHAMPIONS ARENA
Replaces ----- start = 25/09/2018 19:45:00 stop = 25/09/2018 21:50:00 title = CHAMPIONS LEAGUE J01
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 21:25:00 stop = 25/09/2018 23:15:00 title = CHAMPIONS ARENA
Replaces ----- start = 25/09/2018 19:45:00 stop = 25/09/2018 21:50:00 title = CHAMPIONS LEAGUE J01
Replaces ----- start = 25/09/2018 21:50:00 stop = 26/09/2018 00:05:00 title = CHAMPIONS LEAGUE J01
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 23:15:00 stop = 26/09/2018 00:45:00 title = CHAMPIONS ARENA
Replaces ----- start = 25/09/2018 21:50:00 stop = 26/09/2018 00:05:00 title = CHAMPIONS LEAGUE J01
n
0.04 sec/update
Summary for update of SportsHD15
missing shows added 0
changed shows updated 20
new shows added 1
unchanged shows inspected 2
total after update 23
elapstime / updated show 0.04 seconds
( 18/239 ) BEIN.NET -- chan. (xmltv_id=SportsHD16) -- mode Incremental
ii.nnnnnnnnnnnnnnn
0.01 sec/update
Summary for update of SportsHD16
missing shows added 0
changed shows updated 0
new shows added 15
unchanged shows inspected 1
total after update 16
elapstime / updated show 0.02 seconds
( 19/239 ) BEIN.NET -- chan. (xmltv_id=SportsHD17) -- mode Incremental
iinn
0.02 sec/update
Summary for update of SportsHD17
missing shows added 0
changed shows updated 0
new shows added 2
unchanged shows inspected 0
total after update 2
elapstime / updated show 0.03 seconds
( 20/239 ) BEIN.NET -- chan. (xmltv_id=News_ar) -- mode Incremental
ii..c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 00:07:00 stop = 25/09/2018 00:16:00 title = Magazine Report
Replaces ----- start = 25/09/2018 00:07:00 stop = 25/09/2018 00:15:00 title = Magazine Report
Replaces ----- start = 25/09/2018 00:15:00 stop = 25/09/2018 00:30:00 title = Special Report
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 00:16:00 stop = 25/09/2018 00:30:00 title = Special Report
Replaces ----- start = 25/09/2018 00:15:00 stop = 25/09/2018 00:30:00 title = Special Report
.........c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 04:07:00 stop = 25/09/2018 04:16:00 title = Magazine Report
Replaces ----- start = 25/09/2018 04:07:00 stop = 25/09/2018 04:15:00 title = Magazine Report
Replaces ----- start = 25/09/2018 04:15:00 stop = 25/09/2018 04:30:00 title = Special Report
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 04:16:00 stop = 25/09/2018 04:30:00 title = Special Report
Replaces ----- start = 25/09/2018 04:15:00 stop = 25/09/2018 04:30:00 title = Special Report
.......................................................nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
0.01 sec/update
Summary for update of News_ar
missing shows added 0
changed shows updated 4
new shows added 70
unchanged shows inspected 66
total after update 140
elapstime / updated show 0.02 seconds
( 21/239 ) BEIN.NET -- chan. (xmltv_id=SportsGlobalHD) -- mode Incremental
iic
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 00:00:00 stop = 25/09/2018 02:35:00 title = South Korea vs Japan
Replaces ----- start = 25/09/2018 00:00:00 stop = 25/09/2018 02:00:00 title = South Korea vs Japan
Replaces ----- start = 25/09/2018 02:00:00 stop = 25/09/2018 03:45:00 title = Qatar vs Bahrain
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 02:35:00 stop = 25/09/2018 04:45:00 title = Qatar vs Bahrain
Replaces ----- start = 25/09/2018 02:00:00 stop = 25/09/2018 03:45:00 title = Qatar vs Bahrain
Replaces ----- start = 25/09/2018 03:45:00 stop = 25/09/2018 05:30:00 title = Al Sadd vs Al Rayyan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 04:45:00 stop = 25/09/2018 05:15:00 title = Dream Team Catalogue
Replaces ----- start = 25/09/2018 03:45:00 stop = 25/09/2018 05:30:00 title = Al Sadd vs Al Rayyan
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 05:15:00 stop = 25/09/2018 07:00:00 title = Al Sadd vs Al Rayyan
Replaces ----- start = 25/09/2018 03:45:00 stop = 25/09/2018 05:30:00 title = Al Sadd vs Al Rayyan
Replaces ----- start = 25/09/2018 05:30:00 stop = 25/09/2018 07:15:00 title = Al Duhail vs Al Gharafa
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 07:00:00 stop = 25/09/2018 08:45:00 title = Al Duhail vs Al Gharafa
Replaces ----- start = 25/09/2018 05:30:00 stop = 25/09/2018 07:15:00 title = Al Duhail vs Al Gharafa
Replaces ----- start = 25/09/2018 07:15:00 stop = 25/09/2018 07:45:00 title = Dream Team Catalogue
Replaces ----- start = 25/09/2018 07:45:00 stop = 25/09/2018 09:30:00 title = IRT vs MAT
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 08:45:00 stop = 25/09/2018 10:30:00 title = IRT vs MAT
Replaces ----- start = 25/09/2018 07:45:00 stop = 25/09/2018 09:30:00 title = IRT vs MAT
Replaces ----- start = 25/09/2018 09:30:00 stop = 25/09/2018 11:15:00 title = Hamburger Sv vs Jahn Regensburg
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 10:30:00 stop = 25/09/2018 12:15:00 title = Hamburger Sv vs Jahn Regensburg
Replaces ----- start = 25/09/2018 09:30:00 stop = 25/09/2018 11:15:00 title = Hamburger Sv vs Jahn Regensburg
Replaces ----- start = 25/09/2018 11:15:00 stop = 25/09/2018 13:00:00 title = DTM Motorsport
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 12:15:00 stop = 25/09/2018 13:30:00 title = DTM Motorsport
Replaces ----- start = 25/09/2018 11:15:00 stop = 25/09/2018 13:00:00 title = DTM Motorsport
Replaces ----- start = 25/09/2018 13:00:00 stop = 25/09/2018 14:45:00 title = Paris Fc vs Metz
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 13:30:00 stop = 25/09/2018 15:15:00 title = Paris Fc vs Metz
Replaces ----- start = 25/09/2018 13:00:00 stop = 25/09/2018 14:45:00 title = Paris Fc vs Metz
Replaces ----- start = 25/09/2018 14:45:00 stop = 25/09/2018 16:30:00 title = Las Palmas vs Malaga
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 15:15:00 stop = 25/09/2018 17:00:00 title = Las Palmas vs Malaga
Replaces ----- start = 25/09/2018 14:45:00 stop = 25/09/2018 16:30:00 title = Las Palmas vs Malaga
Replaces ----- start = 25/09/2018 16:30:00 stop = 25/09/2018 18:15:00 title = Pick Szegued vs Nantes
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 17:00:00 stop = 25/09/2018 18:30:00 title = Pick Szegued vs Nantes
Replaces ----- start = 25/09/2018 16:30:00 stop = 25/09/2018 18:15:00 title = Pick Szegued vs Nantes
Replaces ----- start = 25/09/2018 18:15:00 stop = 25/09/2018 20:15:00 title = Iran vs China
c
epg correction :
CHANGED show corrected,
show with ---- start = 25/09/2018 18:30:00 stop = 25/09/2018 20:30:00 title = Iran vs China
Replaces ----- start = 25/09/2018 18:15:00 stop = 25/09/2018 20:15:00 title = Iran vs China
Replaces ----- start = 25/09/2018 20:15:00 stop = 25/09/2018 22:15:00 title = Japan vs India
c
epg correction :
CHANGED show corrected,