forked from Fazzani/grab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfr_telerama.xmltv
5801 lines (5774 loc) · 290 KB
/
fr_telerama.xmltv
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
<?xml version="1.0" encoding="UTF-8"?>
<tv generator-info-name="WebGrab+Plus/w MDB & REX Postprocess -- version V3.1.4.0 -- Jan van Straaten" generator-info-url="http://www.webgrabplus.com">
<channel id="MTV Rocks">
<display-name lang="fr">MTV Rocks</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="MTV Base">
<display-name lang="fr">MTV Base</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="NRJ Hits">
<display-name lang="fr">NRJ Hits</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="AB 3">
<display-name lang="fr">AB 3</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="E !">
<display-name lang="fr">E! (fr)</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Chasse et pêche">
<display-name lang="fr">Chasse et pêche</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Discovery Channel">
<display-name lang="fr">Discovery Channel fr</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Discovery Science">
<display-name lang="fr">Discovery Science fr</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Science & Vie TV">
<display-name lang="fr">Science et Vie TV</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Extreme Sports Channel">
<display-name lang="fr">Extreme Sports Channel</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Motorsport TV">
<display-name lang="fr">Motorsport TV</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="OMTV">
<display-name lang="fr">OMTV</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Al Jazeera English">
<display-name lang="fr">Al Jazeera English</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="BBC World News">
<display-name lang="fr">BBC World News</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="BE 1">
<display-name lang="fr">BE 1</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Be Ciné">
<display-name lang="fr">Be Ciné</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Be Séries">
<display-name lang="fr">Be Séries</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="La Deux">
<display-name lang="fr">La Deux</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="La Trois">
<display-name lang="fr">La Trois</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="La Une">
<display-name lang="fr">La Une</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="VOOsport World 1">
<display-name lang="fr">VOOsport World 1</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="VOOsport World 2">
<display-name lang="fr">VOOsport World 2</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<channel id="Real Madrid TV">
<display-name lang="fr">Real Madrid TV</display-name>
<icon src="https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/150x150/192.png?itok=LK8LTHrB|https://television.telerama.fr/sites/tr_master/files/styles/channel_logo_80x80/public/sheet_media/tv/500x500/192-dark.png?itok=pyoEIPjE" />
<url>http://www.telerama.fr</url>
</channel>
<programme start="20210214070000 +0100" stop="20210214110000 +0100" channel="MTV Rocks">
<title lang="fr">Mmm Bop! Perfect 90s Pop</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214110000 +0100" stop="20210214140000 +0100" channel="MTV Rocks">
<title lang="fr">Saved By the 90s</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214140000 +0100" stop="20210214150000 +0100" channel="MTV Rocks">
<title lang="fr">Girl Power Hour!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214150000 +0100" stop="20210214200000 +0100" channel="MTV Rocks">
<title lang="fr">Never Forget the 90s!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214200000 +0100" stop="20210214210000 +0100" channel="MTV Rocks">
<title lang="fr">This Is How We Do 90s Hip Hop & R'n'B</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214210000 +0100" stop="20210214220000 +0100" channel="MTV Rocks">
<title lang="fr">Alternative 90s Anthems!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214220000 +0100" stop="20210215040000 +0100" channel="MTV Rocks">
<title lang="fr">Ultimate 90's Anthems</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215070000 +0100" stop="20210215110000 +0100" channel="MTV Rocks">
<title lang="fr">Mmm Bop! Perfect 90s Pop</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215110000 +0100" stop="20210215140000 +0100" channel="MTV Rocks">
<title lang="fr">Saved By the 90s</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215140000 +0100" stop="20210215150000 +0100" channel="MTV Rocks">
<title lang="fr">Girl Power Hour!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215150000 +0100" stop="20210215200000 +0100" channel="MTV Rocks">
<title lang="fr">Never Forget the 90s!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215200000 +0100" stop="20210215210000 +0100" channel="MTV Rocks">
<title lang="fr">This Is How We Do 90s Hip Hop & R'n'B</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215210000 +0100" stop="20210215220000 +0100" channel="MTV Rocks">
<title lang="fr">Alternative 90s Anthems!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215220000 +0100" stop="20210216040000 +0100" channel="MTV Rocks">
<title lang="fr">Ultimate 90's Anthems</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214010000 +0100" stop="20210214030000 +0100" channel="MTV Base">
<title lang="fr">Club MTV's Big 20</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214030000 +0100" stop="20210214050000 +0100" channel="MTV Base">
<title lang="fr">Freshest Beats & Bangers</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214070000 +0100" stop="20210214100000 +0100" channel="MTV Base">
<title lang="fr">Freshest Beats & Bangers</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214100000 +0100" stop="20210214120000 +0100" channel="MTV Base">
<title lang="fr">21 Baby Makin' Jamz!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214120000 +0100" stop="20210214140000 +0100" channel="MTV Base">
<title lang="fr">Ella Mai's R+B Anthems</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214140000 +0100" stop="20210214150000 +0100" channel="MTV Base">
<title lang="fr">Self-Love Is the Best Love!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214150000 +0100" stop="20210214160000 +0100" channel="MTV Base">
<title lang="fr">Most Played Videos Of the Week So Far</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214160000 +0100" stop="20210214200000 +0100" channel="MTV Base">
<title lang="fr">Certified 90s & 00s Throwbacks!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214200000 +0100" stop="20210214220000 +0100" channel="MTV Base">
<title lang="fr">One In A Million! the Love Gems</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214220000 +0100" stop="20210214230000 +0100" channel="MTV Base">
<title lang="fr">Love Lockdown!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214230000 +0100" stop="20210215010000 +0100" channel="MTV Base">
<title lang="fr">Let's Talk About...Bedroom Classics</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215010000 +0100" stop="20210215030000 +0100" channel="MTV Base">
<title lang="fr">Old Skool Night!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215030000 +0100" stop="20210215050000 +0100" channel="MTV Base">
<title lang="fr">Freshest Beats & Bangers</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215070000 +0100" stop="20210215110000 +0100" channel="MTV Base">
<title lang="fr">Freshest Beats & Bangers</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215110000 +0100" stop="20210215120000 +0100" channel="MTV Base">
<title lang="fr">Sean Paul and Friends</title>
<category lang="fr">Emission musicale</category>
</programme>
<programme start="20210215120000 +0100" stop="20210215130000 +0100" channel="MTV Base">
<title lang="fr">10 Biggest R&B & Rap Anthems RN!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215130000 +0100" stop="20210215150000 +0100" channel="MTV Base">
<title lang="fr">#PLAY Old Skool vs New Skool</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215150000 +0100" stop="20210215160000 +0100" channel="MTV Base">
<title lang="fr">We Love the Weeknd!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215160000 +0100" stop="20210215180000 +0100" channel="MTV Base">
<title lang="fr">Gimme Da Light!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215180000 +0100" stop="20210215200000 +0100" channel="MTV Base">
<title lang="fr">On Shuffle: Hottest Hits!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215200000 +0100" stop="20210215210000 +0100" channel="MTV Base">
<title lang="fr">Nicki Minaj: Official Top 10</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215210000 +0100" stop="20210215230000 +0100" channel="MTV Base">
<title lang="fr">Back In the Day</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215230000 +0100" stop="20210216000000 +0100" channel="MTV Base">
<title lang="fr">Big Beats & Future Smashes!</title>
<category lang="fr">Divertissement</category>
</programme>
<programme start="20210216000000 +0100" stop="20210216030000 +0100" channel="MTV Base">
<title lang="fr">Old Skool Night!</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210216030000 +0100" stop="20210216050000 +0100" channel="MTV Base">
<title lang="fr">Freshest Beats & Bangers</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214000000 +0100" stop="20210214020000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Hits Mix (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214020000 +0100" stop="20210214060000 +0100" channel="NRJ Hits">
<title lang="fr">French Music Only (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214060000 +0100" stop="20210214070000 +0100" channel="NRJ Hits">
<title lang="fr">La tête dans le clip</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214070000 +0100" stop="20210214120000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Morning Hits (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214120000 +0100" stop="20210214180000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Week End (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214180000 +0100" stop="20210214200000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Hit Music Only (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214200000 +0100" stop="20210214210000 +0100" channel="NRJ Hits">
<title lang="fr">Spéciale Kendji Girac</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214210000 +0100" stop="20210215020000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Hits Mix (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215020000 +0100" stop="20210215060000 +0100" channel="NRJ Hits">
<title lang="fr">French Music Only (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215060000 +0100" stop="20210215070000 +0100" channel="NRJ Hits">
<title lang="fr">La tête dans le clip</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215070000 +0100" stop="20210215120000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Morning Hits (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215120000 +0100" stop="20210215170000 +0100" channel="NRJ Hits">
<title lang="fr">Hit Music Only</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215170000 +0100" stop="20210215200000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Winter (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210215200000 +0100" stop="20210216000000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Hit Music Only (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210216000000 +0100" stop="20210216020000 +0100" channel="NRJ Hits">
<title lang="fr">NRJ Hits Mix (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210216020000 +0100" stop="20210216060000 +0100" channel="NRJ Hits">
<title lang="fr">French Music Only (?)</title>
<category lang="fr">Clips</category>
</programme>
<programme start="20210214100500 +0100" stop="20210214102000 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210214102000 +0100" stop="20210214104800 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210214104800 +0100" stop="20210214105800 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210214105800 +0100" stop="20210214105900 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210214105900 +0100" stop="20210214110000 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210214110000 +0100" stop="20210214110500 +0100" channel="AB 3">
<title lang="fr">Météo</title>
<category lang="fr">Météo</category>
</programme>
<programme start="20210214110500 +0100" stop="20210214115500 +0100" channel="AB 3">
<title lang="fr">Tattoo Cover : Londres (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214115500 +0100" stop="20210214125500 +0100" channel="AB 3">
<title lang="fr">Tattoo Cover : Londres (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214125500 +0100" stop="20210214135000 +0100" channel="AB 3">
<title lang="fr">Tattoo Cover : Londres (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214135000 +0100" stop="20210214151000 +0100" channel="AB 3">
<title lang="fr">Bean</title>
<desc lang="fr">Indésirable à la National Gallery de Londres, un employé désinvolte reçoit la mission de convoyer un tableau destiné à un prestigieux musée américain.</desc>
<category lang="fr">Film</category>
<icon src="https://www.telerama.fr/sites/tr_master/files/sheet_media/movie/7_325074.jpg" />
</programme>
<programme start="20210214151000 +0100" stop="20210214164500 +0100" channel="AB 3">
<title lang="fr">Ivresse et conséquences</title>
<desc lang="fr">A la veille de son mariage, un jeune homme se réveille aux côtés d'une ravissante inconnue. Il tente alors de tout dissimuler à sa future épouse.</desc>
<category lang="fr">Film</category>
</programme>
<programme start="20210214164500 +0100" stop="20210214183000 +0100" channel="AB 3">
<title lang="fr">Un mariage trop parfait</title>
<desc lang="fr">Une organisatrice de mariages tombe follement amoureuse d'un jeune médecin qui lui sauve la vie et lui demande ensuite de préparer ses noces.</desc>
<category lang="fr">Film</category>
</programme>
<programme start="20210214183000 +0100" stop="20210214193500 +0100" channel="AB 3">
<title lang="fr">Une semaine pour sauver mon couple (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214193500 +0100" stop="20210214204000 +0100" channel="AB 3">
<title lang="fr">Une semaine pour sauver mon couple (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214204000 +0100" stop="20210214220000 +0100" channel="AB 3">
<title lang="fr">90' Enquêtes (?)</title>
<credits>
<presenter>Carole Rousseau</presenter>
<presenter>Tatiana Silva</presenter>
</credits>
<category lang="fr">Magazine de société</category>
</programme>
<programme start="20210214220000 +0100" stop="20210214231500 +0100" channel="AB 3">
<title lang="fr">90' Enquêtes (?)</title>
<credits>
<presenter>Carole Rousseau</presenter>
<presenter>Tatiana Silva</presenter>
</credits>
<category lang="fr">Magazine de société</category>
</programme>
<programme start="20210214231500 +0100" stop="20210215011500 +0100" channel="AB 3">
<title lang="fr">Cinquante nuances de Grey</title>
<desc lang="fr">Etudiante en littérature anglaise, Anastasia Steele remplace au pied levé son amie Kate qui devait faire l'interview du millionnaire Christian Grey. La jeune femme tombe immédiatement sous le charme de cet homme mystérieux et au contrôle absolu. Cela semble réciproque car celui-ci vient lui acheter du matériel dans la boutique de bricolage où elle travaille. Après une séance photo, il l'invite à prendre un verre et finit par la repousser, la jugeant trop romantique. Finalement, leur jeu de la séduction reprend. Il finit par lui avouer des pratiques sexuelles un peu particulières. Si Anastasia veut avoir une relation suivie avec lui, elle doit les accepter...</desc>
<category lang="fr">Film</category>
<icon src="https://www.telerama.fr/sites/tr_master/files/sheet_media/movie/483017/69289801_520188.jpg" />
</programme>
<programme start="20210215101000 +0100" stop="20210215102500 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210215102500 +0100" stop="20210215104000 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210215104000 +0100" stop="20210215105500 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210215105500 +0100" stop="20210215110900 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210215110900 +0100" stop="20210215111000 +0100" channel="AB 3">
<title lang="fr">Télé-achat</title>
<category lang="fr">Magazine de télé-achat</category>
</programme>
<programme start="20210215111000 +0100" stop="20210215112000 +0100" channel="AB 3">
<title lang="fr">Météo</title>
<category lang="fr">Météo</category>
</programme>
<programme start="20210215125500 +0100" stop="20210215142000 +0100" channel="AB 3">
<title lang="fr">Harcèlement 2.0 (?)</title>
<credits>
<director>Terrence Hayes</director>
<actor>Adam Vera
Adam</actor>
<actor>Kris Sidberry
Maya</actor>
<actor>Lance A Williams
Lucas</actor>
<actor>Paul McCallion
Greg</actor>
<actor>Priscilla Manning
Kathy Edwards</actor>
<actor>Sarah Fischer
Meghan Sadler</actor>
<actor>Shoshana Bush
Whitney Sadler</actor>
</credits>
<category lang="fr">Téléfilm de suspense</category>
</programme>
<programme start="20210215142000 +0100" stop="20210215154500 +0100" channel="AB 3">
<title lang="fr">Rencontre et meurtre si affinité (?)</title>
<credits>
<director>Jared Cohn</director>
<actor>Caitlin Carmichael
Alexis jeune</actor>
<actor>George Saunders
Hank</actor>
<actor>John Sword
Daniel</actor>
<actor>Tandi Tugwell
Molly</actor>
<actor>Tom DeNucci
Billy</actor>
</credits>
<category lang="fr">Téléfilm de suspense</category>
</programme>
<programme start="20210215201500 +0100" stop="20210215211500 +0100" channel="AB 3">
<title lang="fr">Dossiers criminels (?)</title>
<credits>
<director>Alexis de La Fontaine</director>
<director>Anne Moyat</director>
<director>Astrid Verdun</director>
</credits>
<category lang="fr">Société</category>
</programme>
<programme start="20210215211500 +0100" stop="20210215221000 +0100" channel="AB 3">
<title lang="fr">Dossiers criminels (?)</title>
<credits>
<director>Alexis de La Fontaine</director>
<director>Anne Moyat</director>
<director>Astrid Verdun</director>
</credits>
<category lang="fr">Société</category>
</programme>
<programme start="20210215221000 +0100" stop="20210215224500 +0100" channel="AB 3">
<title lang="fr">Dossiers criminels (?)</title>
<credits>
<director>Alexis de La Fontaine</director>
<director>Anne Moyat</director>
<director>Astrid Verdun</director>
</credits>
<category lang="fr">Société</category>
</programme>
<programme start="20210215224500 +0100" stop="20210215232500 +0100" channel="AB 3">
<title lang="fr">Dossiers criminels (?)</title>
<credits>
<director>Alexis de La Fontaine</director>
<director>Anne Moyat</director>
<director>Astrid Verdun</director>
</credits>
<category lang="fr">Société</category>
</programme>
<programme start="20210215232500 +0100" stop="20210216002500 +0100" channel="AB 3">
<title lang="fr">Dossiers criminels (?)</title>
<credits>
<director>Alexis de La Fontaine</director>
<director>Anne Moyat</director>
<director>Astrid Verdun</director>
</credits>
<category lang="fr">Société</category>
</programme>
<programme start="20210216002500 +0100" stop="20210216012000 +0100" channel="AB 3">
<title lang="fr">Dossiers criminels (?)</title>
<credits>
<director>Alexis de La Fontaine</director>
<director>Anne Moyat</director>
<director>Astrid Verdun</director>
</credits>
<category lang="fr">Société</category>
</programme>
<programme start="20210216012000 +0100" stop="20210216021500 +0100" channel="AB 3">
<title lang="fr">Dossiers criminels (?)</title>
<credits>
<director>Alexis de La Fontaine</director>
<director>Anne Moyat</director>
<director>Astrid Verdun</director>
</credits>
<category lang="fr">Société</category>
</programme>
<programme start="20210214001700 +0100" stop="20210214010500 +0100" channel="E !">
<title lang="fr">Celebrity Game Face (?)</title>
<category lang="fr">Jeu</category>
</programme>
<programme start="20210214015300 +0100" stop="20210214024000 +0100" channel="E !">
<title lang="fr">The Bi Life (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214024000 +0100" stop="20210214032400 +0100" channel="E !">
<title lang="fr">The Bi Life (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214032400 +0100" stop="20210214040800 +0100" channel="E !">
<title lang="fr">The Bi Life (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214040800 +0100" stop="20210214045200 +0100" channel="E !">
<title lang="fr">The Bi Life (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214045200 +0100" stop="20210214053500 +0100" channel="E !">
<title lang="fr">C'est mon mariage ! (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214061300 +0100" stop="20210214064000 +0100" channel="E !">
<title lang="fr">Dating: No Filter (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214064000 +0100" stop="20210214070100 +0100" channel="E !">
<title lang="fr">Dating: No Filter (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214070100 +0100" stop="20210214072700 +0100" channel="E !">
<title lang="fr">Dating: No Filter (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214072700 +0100" stop="20210214074600 +0100" channel="E !">
<title lang="fr">Dating: No Filter (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214074600 +0100" stop="20210214081200 +0100" channel="E !">
<title lang="fr">Dating: No Filter (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214081200 +0100" stop="20210214083300 +0100" channel="E !">
<title lang="fr">Dating: No Filter (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214083300 +0100" stop="20210214090000 +0100" channel="E !">
<title lang="fr">Dating: No Filter (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214140000 +0100" stop="20210214144800 +0100" channel="E !">
<title lang="fr">Celebrity Game Face (?)</title>
<category lang="fr">Jeu</category>
</programme>
<programme start="20210214191700 +0100" stop="20210214200600 +0100" channel="E !">
<title lang="fr">Celebrity Game Face (?)</title>
<category lang="fr">Jeu</category>
</programme>
<programme start="20210215032200 +0100" stop="20210215040400 +0100" channel="E !">
<title lang="fr">C'est mon mariage ! (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210215040400 +0100" stop="20210215044600 +0100" channel="E !">
<title lang="fr">C'est mon mariage ! (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210215075900 +0100" stop="20210215084600 +0100" channel="E !">
<title lang="fr">Hollywood Medium (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210215133600 +0100" stop="20210215142600 +0100" channel="E !">
<title lang="fr">Hollywood Medium (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210215214900 +0100" stop="20210215223800 +0100" channel="E !">
<title lang="fr">Celebrity Game Face (?)</title>
<category lang="fr">Jeu</category>
</programme>
<programme start="20210216042600 +0100" stop="20210216050900 +0100" channel="E !">
<title lang="fr">C'est mon mariage ! (?)</title>
<category lang="fr">Téléréalité</category>
</programme>
<programme start="20210214000600 +0100" stop="20210214023000 +0100" channel="Chasse et pêche">
<title lang="fr">Une forêt pour 100 000 chasseurs (?)</title>
<credits>
<director>Jean-Paul Gurliat</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214023000 +0100" stop="20210214032100 +0100" channel="Chasse et pêche">
<title lang="fr">Vénerie (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214032100 +0100" stop="20210214060000 +0100" channel="Chasse et pêche">
<title lang="fr">Pause</title>
<category lang="fr">Autre</category>
</programme>
<programme start="20210214060000 +0100" stop="20210214071800 +0100" channel="Chasse et pêche">
<title lang="fr">Carpes (?)</title>
<credits>
<director>Mariya Sergenyuk</director>
</credits>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210214071800 +0100" stop="20210214081700 +0100" channel="Chasse et pêche">
<title lang="fr">Chasser le grand gibier à Tronçais (?)</title>
<credits>
<director>Jean-Paul Gurliat</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214081700 +0100" stop="20210214090900 +0100" channel="Chasse et pêche">
<title lang="fr">Une forêt pour 100 000 chasseurs (?)</title>
<credits>
<director>Jean-Paul Gurliat</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214090900 +0100" stop="20210214095800 +0100" channel="Chasse et pêche">
<title lang="fr">Grives (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214095800 +0100" stop="20210214104700 +0100" channel="Chasse et pêche">
<title lang="fr">Hongrie (?)</title>
<credits>
<director>Bruno Mounier</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214104700 +0100" stop="20210214111000 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214111000 +0100" stop="20210214113300 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214113300 +0100" stop="20210214115500 +0100" channel="Chasse et pêche">
<title lang="fr">La globe-trotteuse Chasse & Pêche (?)</title>
<credits>
<director>Larysa Switlyk</director>
</credits>
<category lang="fr">Nature</category>
</programme>
<programme start="20210214115500 +0100" stop="20210214121700 +0100" channel="Chasse et pêche">
<title lang="fr">La globe-trotteuse Chasse & Pêche (?)</title>
<credits>
<director>Larysa Switlyk</director>
</credits>
<category lang="fr">Nature</category>
</programme>
<programme start="20210214121700 +0100" stop="20210214124100 +0100" channel="Chasse et pêche">
<title lang="fr">Tradition de la Saint-Hubert à Palluau-sur-Indre (?)</title>
<credits>
<director>Gilbert Di Nino</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214124100 +0100" stop="20210214130600 +0100" channel="Chasse et pêche">
<title lang="fr">Chasse au gros gibier dans la forêt de Fontainebleau (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214130600 +0100" stop="20210214133200 +0100" channel="Chasse et pêche">
<title lang="fr">Chasse à l'isard dans les Pyrénées-Orientales (?)</title>
<credits>
<director>Gilbert Di Nino</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214133200 +0100" stop="20210214140200 +0100" channel="Chasse et pêche">
<title lang="fr">Brouillard (?)</title>
<credits>
<director>Carlos Castillo</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214140200 +0100" stop="20210214142400 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214142400 +0100" stop="20210214144600 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214144600 +0100" stop="20210214150700 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214150700 +0100" stop="20210214152800 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214152800 +0100" stop="20210214161300 +0100" channel="Chasse et pêche">
<title lang="fr">Jeremy Wade's Mighty Rivers (?)</title>
<credits>
<director>Alex Parkinson</director>
<director>Nicholas White</director>
</credits>
<category lang="fr">Découvertes</category>
</programme>
<programme start="20210214161300 +0100" stop="20210214164000 +0100" channel="Chasse et pêche">
<title lang="fr">Hooké (?)</title>
<credits>
<presenter>Alexis Pageau</presenter>
<presenter>Charles-Alexandre Cloutier</presenter>
<presenter>Derek Martin</presenter>
</credits>
<category lang="fr">Magazine de découvertes</category>
</programme>
<programme start="20210214164000 +0100" stop="20210214170500 +0100" channel="Chasse et pêche">
<title lang="fr">Hooké (?)</title>
<credits>
<presenter>Alexis Pageau</presenter>
<presenter>Charles-Alexandre Cloutier</presenter>
<presenter>Derek Martin</presenter>
</credits>
<category lang="fr">Magazine de découvertes</category>
</programme>
<programme start="20210214170500 +0100" stop="20210214173000 +0100" channel="Chasse et pêche">
<title lang="fr">Hooké (?)</title>
<credits>
<presenter>Alexis Pageau</presenter>
<presenter>Charles-Alexandre Cloutier</presenter>
<presenter>Derek Martin</presenter>
</credits>
<category lang="fr">Magazine de découvertes</category>
</programme>
<programme start="20210214173000 +0100" stop="20210214180000 +0100" channel="Chasse et pêche">
<title lang="fr">Le chasseur français (?)</title>
<credits>
<presenter>Antoine Berton</presenter>
</credits>
<category lang="fr">Magazine de la chasse</category>
</programme>
<programme start="20210214180000 +0100" stop="20210214183000 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214183000 +0100" stop="20210214190000 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214190000 +0100" stop="20210214200000 +0100" channel="Chasse et pêche">
<title lang="fr">J'irai pêcher chez vous (?)</title>
<credits>
<director>Olivier Naimi</director>
</credits>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210214200000 +0100" stop="20210214202300 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214202300 +0100" stop="20210214204600 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214204600 +0100" stop="20210214213100 +0100" channel="Chasse et pêche">
<title lang="fr">Des pros et des carpes (?)</title>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210214213100 +0100" stop="20210214221700 +0100" channel="Chasse et pêche">
<title lang="fr">Des pros et des carpes (?)</title>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210214221700 +0100" stop="20210214230100 +0100" channel="Chasse et pêche">
<title lang="fr">Des pros et des carpes (?)</title>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210214230100 +0100" stop="20210214235300 +0100" channel="Chasse et pêche">
<title lang="fr">Une forêt pour 100 000 chasseurs (?)</title>
<credits>
<director>Jean-Paul Gurliat</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210214235300 +0100" stop="20210215004200 +0100" channel="Chasse et pêche">
<title lang="fr">Hongrie (?)</title>
<credits>
<director>Bruno Mounier</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215004200 +0100" stop="20210215023000 +0100" channel="Chasse et pêche">
<title lang="fr">Un cerf dans la lunette (?)</title>
<credits>
<director>Lyonel Chocat</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215023000 +0100" stop="20210215032500 +0100" channel="Chasse et pêche">
<title lang="fr">Chasses d'exception (?)</title>
<credits>
<director>Bruno Mounier</director>
<director>Thierry Bruant</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215032500 +0100" stop="20210215053100 +0100" channel="Chasse et pêche">
<title lang="fr">Pause</title>
<category lang="fr">Autre</category>
</programme>
<programme start="20210215062300 +0100" stop="20210215071800 +0100" channel="Chasse et pêche">
<title lang="fr">Chasses d'exception (?)</title>
<credits>
<director>Bruno Mounier</director>
<director>Thierry Bruant</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215071800 +0100" stop="20210215081300 +0100" channel="Chasse et pêche">
<title lang="fr">Chasses d'exception (?)</title>
<credits>
<director>Bruno Mounier</director>
<director>Thierry Bruant</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215081300 +0100" stop="20210215090900 +0100" channel="Chasse et pêche">
<title lang="fr">Chasseur des villes (?)</title>
<credits>
<director>Eric Tournier</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215090900 +0100" stop="20210215093900 +0100" channel="Chasse et pêche">
<title lang="fr">Le chasseur français (?)</title>
<credits>
<presenter>Antoine Berton</presenter>
</credits>
<category lang="fr">Magazine de la chasse</category>
</programme>
<programme start="20210215093900 +0100" stop="20210215102500 +0100" channel="Chasse et pêche">
<title lang="fr">Des pros et des carpes (?)</title>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210215102500 +0100" stop="20210215111000 +0100" channel="Chasse et pêche">
<title lang="fr">Des pros et des carpes (?)</title>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210215111000 +0100" stop="20210215120000 +0100" channel="Chasse et pêche">
<title lang="fr">Des pros et des carpes (?)</title>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210215120000 +0100" stop="20210215121300 +0100" channel="Chasse et pêche">
<title lang="fr">Cap sur la pêche française (?)</title>
<credits>
<director>Sophie Wahl</director>
</credits>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210215121300 +0100" stop="20210215122600 +0100" channel="Chasse et pêche">
<title lang="fr">Cap sur la pêche française (?)</title>
<credits>
<director>Sophie Wahl</director>
</credits>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210215122600 +0100" stop="20210215124500 +0100" channel="Chasse et pêche">
<title lang="fr">Cap sur la pêche française (?)</title>
<credits>
<director>Sophie Wahl</director>
</credits>
<category lang="fr">Pêche</category>
</programme>
<programme start="20210215134400 +0100" stop="20210215140700 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215140700 +0100" stop="20210215143000 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215143000 +0100" stop="20210215145200 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215145200 +0100" stop="20210215151400 +0100" channel="Chasse et pêche">
<title lang="fr">Outlanders (?)</title>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215151400 +0100" stop="20210215153700 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215153700 +0100" stop="20210215160000 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215160000 +0100" stop="20210215162400 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215162400 +0100" stop="20210215164800 +0100" channel="Chasse et pêche">
<title lang="fr">Québec à vol d'oiseau (?)</title>
<credits>
<director>Frédéric Laroche</director>
<director>Joel Tremblay</director>
</credits>
<category lang="fr">Chasse</category>
</programme>
<programme start="20210215164800 +0100" stop="20210215173300 +0100" channel="Chasse et pêche">
<title lang="fr">Jeremy Wade's Mighty Rivers (?)</title>
<credits>
<director>Alex Parkinson</director>
<director>Nicholas White</director>
</credits>
<category lang="fr">Découvertes</category>
</programme>
<programme start="20210215173300 +0100" stop="20210215180000 +0100" channel="Chasse et pêche">
<title lang="fr">Hooké (?)</title>
<credits>
<presenter>Alexis Pageau</presenter>
<presenter>Charles-Alexandre Cloutier</presenter>