summaryrefslogtreecommitdiff
path: root/doc-src/en/epgsearch.1.txt
blob: 702cfce74c80e1291ea4ed8b44af54bb2616dfd4 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
=head1 NAME

F<epgsearch> - Searchtimer and replacement of the VDR program menu

=head1 OVERVIEW

EPG-Search can be used as a replacement for the default schedules
menu entry. It looks like the standard schedules menu, but adds some
additional functions:

 - Commands for EPG entries with 5 built-in commands like 'show repeats',
   'create search'. One can add own commands for other needs, like adding a
   VDRAdmin auto-timer.

 - Add up to 4 user-defined times to 'now' and 'next' and an optional
   favorites menu

 - Searching the EPG: Create reusable queries, which can also be used
   as 'search timers'.

 - Search timers: Search for broadcasts in the background and add a
   timer if one matches (similar to VDRAdmin's auto-timers) or simply
   make an announcement about it via OSD

 - Avoid double recordings of the same event
   * timer preview
   * recognition of broken recordings
   * fuzzy event comparison

 - Progress bar in 'What's on now' and 'What's on next'

 - Shift the time displayed by key press, e.g. 'What's on now' + 30 minutes

 - Start menu can be setup between 'Schedule' or 'What's on now'

 - background check for timer conflicts with a timer conflict manager

 - detailed EPG menu (summary) allows jumping to the next/previous
   event

 - support for extended EPG info for search timers

 - extension of the timer edit menu with a directory item, user
   defined weekday selection and a subtitle completion.

 - Timer conflict check, informs you over the OSD about conflicts

 - Timer conflict menu, show detailed information about the conflicts
   and let you resolve them

 - Email notifications about search timer updates and timer conflicts

Parts of the sources are based on the repeating-ECG patch from Gerhard Steiner, who gave me the permission to use them. Thanks for his work!

=head1 OPTIONS

=over 4

=item -f file,  --svdrpsendcmd=file

the path to svdrpsend for external SVDRP communication (default is
internal communication, so this is usually not needed anymore)

=item -c path,  --config=path

to specify a specific config directory for all epgsearch config files, default
is '<plugins configuration directory>/epgsearch'

=item -l file,  --logfile=file

to specify a specific log file for epgsearch (default log file is
epgsearch.log in the epgsearch config directory)

=item -v n,  --verbose=n

verbose level for log file. Value 0 means no logging. Other values
are 1 (general messages), 2 (detailed messages), 3 (planned for extra
detailed info for debugging purposes)

=item -r,  --reloadmenuconf

reload epgsearchmenu.conf with plugin call. This can be useful when testing
customized menu layouts.

=item -m file,  --mailcmd=file

the external command to be used for mail delivery. The default uses
'sendEmail.pl'. If you are using a different command or script make sure that
it has the same parameter interface as sendEmail.pl.

=back

=head1 CONTENT

 1.    Description
 1.1     Menu commands
 1.2     Menu search
 1.2.1     Menu edit search
 1.2.2     Menu search results
 1.3     Extended 'now' and 'next'
 1.4     Menu setup
 2.    Search timers
 2.1     'Avoid repeats' - internals
 2.2     How do we compare two events?
 2.3     How and when do we compare?
 3.    Usage from other plugins or scripts
 4.    Using extended EPG info
 5.    Replacing the standard schedule menu
 6.    Add-ons

=head1 1. Description

At first glance EPG-Search looks like the schedules menu entry of VDR.
By pressing the key '0', one can toggle the bottom color keys to access
additional functions (the default assignment of the color keys can be
adjusted by setup):


=head2 1.1 Menu Commands

This menu displays commands that can be executed on the current
item. There are 8 built-in commands:

 - Repeats: Searches for repeats

 - Record

 - Switch

 - Create search
   Switches to search menu and adds a new search with the name of the current
   item (to avoid editing the name manually)

 - Search in recordings:
   Search the recordings for a broadcast with the same name

 - Mark as 'already recorded':
   This puts the selected event in the file epgsearchdone.data and instructs
   epgsearch to avoid recording this event if an according search timer is set
   to "avoid repeats". An already created timer will be automatically removed
   with the next search timer update.

 - Add/Remove to/from switch list?:
   Controls the switch list. If there is an event in the switch list, epgsearch
   will announce it and switch to the event before it starts. To access the
   complete switch list, call 'Search/Actions/Switch list'.

 - Create blacklist:
   A blacklist is used to ignore events when using search timers. A search
   timer can be setup to ignore events from arbitrary blacklists.

You can add your own commands to this menu by editing the file
epgsearchcmds.conf in the epgsearch config directory. There's a sample
conf file with some sample commands (see directory 'scripts', taken
from vdr-wiki.de, thanks to the authors).

The format of the file is the same as VDR's commands.conf or
reccmds.conf. When a command is executed the following parameters
are passed to it:

 $1: the title of the EPG entry
 $2: the start time of the EPG entry as time_t value (like in the
     shutdown script)
 $3: the end time
 $4: the channel number of the EPG entry
 $5: the long channel name of the EPG entry
 $6: the subtitle of the EPG entry, "" if not present

To execute a command from the main menu you can also press its
associated number without opening the commands menu.

=head2 1.2 Menu search

Here you can add, edit, delete and execute your own queries on the
EPG. The usage and behavior of this menu is similar to VDR's timer
menu.

=head3 1.2.1 Menu edit search

Most things in this menu are quite clear, so only some notes on:

=over 4

=item - B<Search term:>

The term to search for. If you like to search for more words, separate
them by blanks. Leaving this empty (combined with search mode
'Phrase') will match anything. This is useful, if you search e.g. for
anything that starts between some times on a specific channel.

With 'blue' you can also select a template for the new search. If
one of the templates is set to default, new searches will
automatically get the settings of the default template.

Note: fuzzy searching is limited to 32 chars!

=item - B<Search mode:>

'Phrase' searches for the expression within the EPG. 'All words'
requires, that each word of the expression occurs in the EPG item.
'at least one word' requires, that only one word occurs in the EPG item.
'Match exactly' requires, that your search term matches exactly the
found title, subtitle or description.

With 'Regular expression' you can setup a regular expression as
search term. You don't need a leading and trailing '/' in the
expression. By default these are POSIX extended regular expressions.
If you like to have Herl compatible regular expression, simply edit
the plugins Makefile and uncomment '#REGEXLIB = pcre' to
'REGEXLIB = pcre' (you will need pcreposix installed, comes with
libpcre from www.pcre.org, but it's already part of most distributions).

See also C<epgsearch(4)> 'Description of the search process'.

=item - B<Use content descriptor>

Some providers deliver content descriptors in their EPG, like "Movie/Drama",
"Documentation",...(available with vdr-1.7.11)
Select here the descriptors to search for. Multiple choice is possible, that
must match with all given descriptors (AND operator).

=item - B<Use extended EPG info:>

Only available if configured, see below 'Using extended EPG info'.

=item - B<Ignore missing categories:>

If set to 'Yes' this tells epgsearch that a missing EPG category
should not exclude an event from the results. Caution: Using this without
any other criterions could flood your timers.

=item - B<Use channel:>

Search only for events in the given channels interval, channel
groups or FTA channels only.

Channel groups (e.g. sport channels or Pay-TV channels) can be
managed with a sub-menu called with 'blue'.

ATTENTION: After changing the channels order please check the
settings of your search timers!

=item - B<Use day of week:>

Besides the weekdays you can also set up a user-defined selection,
e.g. search only on Monday and Friday.

You'll find the user-defined selection in the list after Friday.

=item - B<Use blacklists:>

Blacklists are a way to exclude unwanted events. Select only global, one, more
or all blacklists here. If any search result is also contained in one of
the selected blacklists it will be skipped.

=item - B<Use in favorites menu:>

Only available if turned on in setup. With this option you can mark a search
to be used in the favorites menu. The search results of all these searches are
listed in the favorites menu.

=item - B<Result menu layout:>

Only available if you have defined more than one menu template for search
results in epgsearchmenu.conf. This option is used to assign a different menu
layout for the search results of this search.

=item - B<Use as Search Timer:>

If set to yes, the plugin will do a background scan of the EPG in
certain intervals and add a timer, if there is a match. You have to
activate the 'search timers' in the setup. If set to "user defined" one
can specify time margins with key 'blue' where the search timer is active
or not.

=item - B<Action:>

Default action is creating a timer for the search results. But you can
also choose to simply announce the found event via OSD as soon as it is found
or to automatically switch to the event before it starts. It's also possible to
get an announcement via OSD before the event starts and to switch to its channel
with 'Ok'.

=item - B<Serial recording:>

If set to yes, the recordings will be stored in a folder with the name
of the broadcasting and the recordings itself will have the name of
the episode. If there is no episode name, the date and time of the
recording will be used.

=item - B<Directory:>

Here you can assign a directory, where the recording should be stored,
e.g. 'SciFi'. Use the key 'blue' to select directory entries already
used in other search entries or given by entries in the file
epgsearchdirs.conf (simply place your directories here one at each line
without the leading video directory, also see MANUAL).
If your provider delivers extended EPG infos you can also use
variables like "%Genre%" or "%Category%" in your directory
entry. These are replaced with the current EPG info, when a timer is
created.

See also C<epgsearch(4)> 'Using variables in the directory
entry of a search timer'.

=item - B<Delete recordings after ... days:>

Some recordings should only be kept for a few days, like news. With
this feature you can tell epgsearch to delete them automatically
after ... days.

=item - B<Pause if ... recordings exist:>

If the given numbers of recordings currently exists, then epgsearch
will not create further timers. After deleting one or more
recordings it will go on generating new timers.

=item - B<Avoid repeats:>

If you don't want to record repeats, this feature tries to check if
an event was already recorded/programmed and skips it. Please refer
to the section 'Avoid repeats - internals' below before using it.

=item - B<Allowed repeats:>

If you like to accept a certain amount of repeats you can give here
their number.

=item - B<Only repeats within ... days:>

Give here the number of days a repeat has to follow its first
broadcast. 0 is equal to no restriction.

=item - B<Compare title:>

When comparing to events then specify here if the title should be
compared.

=item - B<Compare subtitle:>

When comparing to events then specify here if the subtitle should be
compared. With 'yes' epgsearch will classify two events only as equal if
their episode names match and are not empty.
With 'allow empty' two events may be equal if both subtitles are empty.
Normally you would choose "no" in this case.

=item - B<Compare description:>

When comparing to events then specify here if the description should
be compared.

For comparison all parts of the description, that look like a
category value, are removed first. The remaining text will be
compared. If this is similar at the value of the next option
(regarding the Levinshtein-Distance algorithm) then it will be accepted as equal.

=item - C<Min. match in %:>

The needed minimum match of descriptions in percent.

=item - B<Compare date:>

Sometimes an event is repeated many times within some period (day, week, month,...), but one
cannot distinguish the repeats based on the EPG contents. So the only information is its time.
To use this for comparison select the appropriate period.

=item - B<Compare categories:>

With the button 'setup' you can also specify which categories should
be compared. As with subtitles an event is different if it has no
according category value.

=item - B<Priority, lifetime, margins for start and stop:>

Each search timer can have its own settings for these parameters.
Defaults can be adjusted in the plugins setup.

=item - B<VPS:>

If set to yes, VPS is used, but only, if activated in VDR's setup menu and
if the broadcasting has VPS information.

=item - B<Auto delete:>

to automatically delete a search timer if the following is true:

 * after x recordings, or
 * after x days after the first recording

Only complete recordings are counted. The deletion is executed directly after
the correspondig recording

=back

To toggle the flag 'Use as search timer' without editing the search
entry you can use the key '2'. This will call directly the second
command of the command menu.

=head3 1.2.2 Menu search results

This menu displays the search results. A 'T' lets you know, that there
is already a timer for the event. A 't' means that there's only a
partial timer for it, as in standard schedules menu.

=head2 1.3 Extended 'now' and 'next' and favorites

By setup, one can add up to 4 additional times to extend the green
button, e.g. 'afternoon', 'prime time', 'late night'. Times, that are
already passed, are skipped (you will not get 'afternoon' at evening) with the
exception that a time will be displayed for the next day, if it is less then
20h in the future.
In these menus you can shift the currently displayed time by pressing
FastRew or FastFwd to move back and forward in time. If you don't have
these keys on your remote, you can access this function by pressing
'0' to toggle the green and yellow button to '<<' and '>>'. This toggling
can be adjusted by setup.

You can display a progress bar in 'now' and 'next'.

Furthermore you can enable in the setup an favorites list. You can configure
your searchtimers ("Use in favorite list") to display their results in
you favorite list. This list display event in the next 24 hours ordered by time.

=head2 1.4 Menu setup

=head3 1.4.1 General

=over 4

=item - B<Hide main menu entry:>

This hides the main menu entry 'search'. Attention: when the plugin is
assigned to key 'green' then hiding the plugin will give you VDR's
standard schedule menu (see below to avoid this).

=item - B<Main menu entry:>

If not hidden, the name of main menu entry can be set here. Default is
'Program guide'. Note: If you set it to something different from the default
then the main menu entry is no longer dependent on the OSD language. Setting
it back to default or empty restores this behavior again.

=item - B<Start menu:>

Select the starting menu 'Schedules' or 'Now'

=back

=head3 1.4.2 EPG menus

=over 4

=item - B<Ok key:>

Choose here the behavior of key 'Ok'. You can use it to display the summary
or to switch to the corresponding channel. Note: the functionality of key
'blue' (Switch/Info/Search) depends on this setting.

=item - B<Red key:>

Select if you like to have Standard ('Record') or 'Commands' as
assignment for key 'red'.

=item - B<Blue key:>

select if you like to have Standard ('Switch') or 'Search' as
assignment for key 'blue'.

=item - B<Show progress in 'Now':>

In the menu 'what's on now' you can display a progress bar, that
displays the progress of the current item.

=item - B<Show channel numbers:>

Select this if you like to have a leading channel number before each
item in the EPG menus.

=item - B<Show channel separators:>

Display channel group separators between channel in the menus
'Overview now',...

=item - B<Show day separators:>

Display a day separator between events on different days in the
schedule menu.

=item - B<Show radio channels:>

Also list radio channels.

=item - B<Limit channels from 1 to:>

If you have a large channel set you can speed up things when you limit the
displayed channels with this setting. Use '0' to disable the limit. If the
current channel is above the limit, the limit is ignored and all channels will
be displayed again.

=item - B<'One press' timer creation:>

If set to 'yes' a timer is immediately created when pressing 'Record',
else the timer edit menu is displayed.

=item - B<Show channels without EPG:>

Display channels without EPG to allow switching or create a timer.

=item - B<Time interval for FR/FF [min]:>

In the menus 'now', 'next', 'user def 1', ... you can shift the
displayed time by pressing FastRew, FastFwd on your remote control.
Adjust the amount of minutes to jump here.

=item - B<Toggle Green/Yellow:>

If you don't have FastRew, FastFwd on your remote control, set this to
yes. When pressing '0' in the menus, this toggles the assignment of
the color keys and assigns e.g. '<<' and '>>' to 'green' and 'yellow'.

=item - B<Show favorites menu:>

A favorites menu can display a list of your favorite broadcasts. Enable this
if you want an additional menu besides 'Now' and 'Next'. You can choose
between displaying this menu before or after the menus with user-defined
times. Any search can be used as a favorite. You only have to set the option
'Use in favorites menu' when editing a search.

=item - B<for the next ... hours:>

This value lets you adjust the timespan used to display the favorites.

=back

=head3 1.4.3 User-defined EPG times

=over 4

=item - B<Use user time 1..4:>

Add up to 4 user-defined times besides 'now' and 'next'.

=item - B<Description:>

Name of the user-defined time, e.g. 'Afternoon', 'Prime time', 'Late
night'.

=item - B<Time:>

The associated time of the user-defined time.

=back

=head3 1.4.4 Timer programming

=over 4

=item - B<Use VDR's timer edit menu:>

When programming a standard timer epgsearch uses an extended menu,
that also supports a directory item, user defined weekday selection
and subtitle completion. If you are using a patched version of VDR,
that also has an extended timer edit menu and like to use this menu
rather than epgsearch's then set this option to 'Yes'.

=item - B<Default recording directory:>

This entry will be used in standard timer programming as default
directory. You can also use EPG category variables (e.g. 'My
Movies~%Category%~%Genre%'). When the timer edit menu is launched
epgsearch tries to replace all variables with the values found in
the description of the event. If not all variables could be replaced
then the directory item is left blank.

=item - B<Add episode to manual timers:>

When manually adding a timer epgsearch can automatically add the
episode name to the timer file resulting in a sub-folder for the
later recording, that is named with the episode name. Choose here how
this should be done. 'smart' tries to recognize if this makes
sense. Therefore it checks the length of the event and skips the
subtitle if the event has more than 80min.

=item - B<Default timer check method:>

Manual timers can be checked for EPG changes. Here you can setup the default
check method for each channel. The following methods exist:
   * no check
   * by event ID: checks by an event ID supplied by the channel provider.
   * by channel and time: check by the duration match.

Not all channels provide a proper event ID, so you can setup the default for
each channel here. When programming a manual timer, this default use used in
epgsearch's own timer edit menu.

=back

=head3 1.4.5 Search and search timers

=over 4

=item - B<Use search timers:>

If yes, the plugin makes a background scan of the EPG and adds timers
if it finds matching entries. This applies only to searches that are
marked with 'use as search timer'.

Search timers will always be created local, even if SVDRPDefaulthost
is set to a different host.

=item - B<Update interval:>

The update interval of the background scan for search timers in minutes.

=item - B<SVDRP port:>

For VDR versions through 1.7.14, the default SVDRP port was 2001. Starting with vdr-1.7.15 it was changed to 6419. If you want to use a port other than the default, set it here to get the search timers working.

=item - B<Delay threads:>

The start of the Searchtimer-Update Thread and the following Conflict check can be delayed after VDR-Ready between 0 and 300 seconds (Default is 10 secs).

=item - B<Default Priority:>

Default priority of generated timers.

=item - B<Default Lifetime:>

Default lifetime of generated timers.

=item - B<Margin at start/stop:>

Default margins of generated timers.

=item - B<No announcements when replaying:>

suppress event announcements while any replay is active.

=item - B<Recreate timers after deletion:>

epgsearch remembers by default which timers where already created by search
timers and will not recreate them if they were removed. To disable this
behaviour set this to 'Yes'.

=item - B<Check if EPG exists for ... [h]:>

If you get EPG content from external providers it is possible, that something fails and
some recordings are skipped because of the missing EPG. With this function one can check if
EPG content exists for the next ... hours. With '0' the check is disabled.

=item - C<Warn by OSD:>

Set this to 'Yes' to get warned via OSD.

=item - C<Warn by mail:>

Set this to 'Yes' to get warned by email. Please configure the email account in
'email notification'

=item - C<Channel group to check:>

select hier the channel group to check. Perhaps you have to create it before in 'channel groups'

=item - B<Ignore Pay-TV channels:>

Set this to 'Yes' if you don't want to have events from Pay-TV channels when
searching for a repeat.

=item - B<Search templates:>

Here you can manage search templates which can be used when creating a
search.

=item - B<Blacklists:>

Here you can manage blacklists which can be used to suppress unwanted events
within a search.
A blacklist can also be marked as global. Since the default setting of a search timer
for 'use blacklists' is 'only global', this is a simple way to exclude unwanted events
form all search timers, except: If the search timer has the option 'use blacklists: none'
no blacklists are taken into account. Also the search for repeats within the OSD ignores
any blacklists.

=item - B<Channel groups:>

Here you can setup channel groups (e.g. Sport channels, Pay-TV
channels) that can be used as criterion in  searches. The same can
be done in the search edit menu.

=back

B<Important>: if you get your EPG from external sources make sure that search
timer updates are disabled while your EPG is updated. The reason for this is
that epgsearch will remove timers without events assigned to them. This
situation can exist while the new EPG is feeded to VDR. A simple way to
disable search timer updates is to use the SVDRP command SETS in your EPG
update script:

svdrpsend plug epgsearch SETS off

<your EPG update script>

svdrpsend plug epgsearch SETS on

=head3 1.4.6 Timer conflict checking

=over 4

=item - B<Ignore below priority:>

If a timer will fail with a priority below the given value, you won't get an
OSD message about this and the conflict will be classified as 'not relevant'
in the conflicts overview.

=item - B<Ignore conflict duration less ... min.:>

If a conflict will last only the given minutes it will not produce an OSD
message and the conflict will be classified as 'not relevant'
in the conflicts overview.

=item - B<Only check within next ... days:>

Here you can specify the day range that should be used for the conflict
check.

=item - B<Check also remote conflicts:>

If SVDRPPeering is active, conflicts for remote timers will be checked, if
set to "yes". For this to work epgseach-plugin has to be active on the
remote host too. Default is "no".

=item - B<After each timer programming:>

This performs a conflict check after each manual timer programming and - if
the new/modified timer is involved in a conflict - pops up an OSD message
about it.

=item - B<"When a recording starts:>

Set this to 'yes' if the conflict check should be performed when a recording starts.
In the case of a conlfict you get immediately a message that informs you about it.
The message is only displayed if the conflict is within the next 2 hours.

=item - B<After each search timer update:>

Specify here if you want to have a conflict check after each search timer
update. If set to 'No':

=item - B<every ... minutes:>

performs a conflict check in the background every ... minutes and informs
about relevant conflicts via OSD. Set this to '0' to disable this feature.

=item - B<if conflicts within next ... minutes:>

=over 4

=item - B<every ... minutes:>

if you like to have a more frequent check and OSD notification when a
conflict appears within the given time, use this feature.

=back

=item - B<Avoid notification when replaying:>

Set this to 'yes' if the don't want to get OSD messages about conflicts if
you currently replay something. Nevertheless messages will be displayed if
 the first upcoming conflict is within the next 2 hours.

=back

Also have a look at C<epgsearch(4)>, section 'Working with the timer conflict menu'.

=head3 1.4.7 Email notification

Please make sure, that 'sendEmail.pl' is in the path of your executables and
that the 'epgsearchupdmail.templ' and 'epgsearchconflmail.templ' exists in
epgsearch's configurations directory!

=over 4

=item - B<Search timer notification:>

Enable this, if you want to get an email notification, when the search timer
background thread has

  - created a new timer
  - modified an existing timer
  - deleted a timer, that was void because of EPG changes or other user
    actions.

(Also requires 'Use search timers' in the search timer setup to be activated.)

=item - B<Time between mails [h]:>

For search timer notifications one can set the minimum distance in hours between the mails.
As soon as this time has elapsed a new mail is sent after the next search timer update.
A value of '0' means no delay and will cause immediate mail delivery.

=item - B<Timer conflict notification:>

Enable this, if you want to get an email notification about timer
conflicts. The notification will only include 'relevant' conflicts as
specified in the timer conflict setup. epgsearch will always send a new
notification if there is any change in the current conflicts.

(Also requires 'After each search timer update' or 'every ... minutes' in the
conflict check setup to be activated.)

=item - B<Send to:>

The mail address of the recipient. Note: Some providers (like Arcor) don't
allow the same address for sender and recipient.

=item - B<Mail method:>

You can choose between:

  - sendEmail.pl: this is a simply script shipped with epgsearch, that allows
    mail delivery also on systems without a configured mail server. Please
    copy it to your $PATH
  - sendmail: requires a properly configured mail system

=item - B<Email address:>

Your full(!) email account address to be used for sending the mail.

=item - B<SMTP server:>

The name of your SMTP server to be used for sending the mails.

=item - B<Use SMTP authentication:>

Select 'yes' if your account needs authentication to send mails.

=item - B<AUTH user:>

Specify the accounts username if your account needs authentication.

=item - B<AUTH password:>

Specify the accounts password if your account needs authentication.
Note: The password is saved as plain text. You have to make sure on your own
that your system is safe and no VDR configurations files are visible to non
authorized persons.

=back

After the account setup, check if it works with 'Test'. If you are
using 'sendEmail.pl' for mail delivery, there should be something like 'Email
sent successfully' at the end of the test output. The test function is not
available for method 'sendmail'.

Also have a look at C<epgsearch(4)>, section 'Email notifications'.

=head1 2. Search timers

This is quite the same as VDRAdmin's auto-timers, but needs no external
software. When you create a search, you can give it an option to use
it as search timer. Now the plugin scans EPG entries in certain update
intervals (->setup) in the background and creates timers if there
are matching entries. If you don't like to get a new timer, but only
want to be informed about the event set 'Announce only (no timer)' to
yes.
Since these search timers are quite useful for serials, you can set
the  option 'serial recording' in a search, which creates timers
whose recordings are stored in a folder with the serials name and
whose entries are named with the episode name. If there is no episode
name, the plugin names the recording with a date/time string.

To use search timers, you also have to activate them in the plugins setup.
Also edit the SVDRP port, if you are not using the default 2001.

If you want to trigger a background scan manually simply

touch /etc/vdr/plugins/epgsearch/.epgsearchupdate

This can also be part of your shutdown script. (Add here a sleep
afterwards to give the plugin the time to finish the scan.)

For more info about searchtimers please refer to C<epgsearch(4)>,
'Description of the search process' and 'How do Search Timers work?'

=head2 2.1 'Avoid repeats' - internals

This section explains the feature 'Avoid repeats' for a search timer.
Sometimes one cannot avoid double recordings of an event only by
setting the corresponding search criterions.

Therefore the feature 'avoid repeats' tries to check before creating a
timer, if the same event was already recorded in the past or if there
is a timer that records the same event. If so, there will be no new
timer for the event.

=head2 2.2 How do we compare two events?

To check if two events are the same there are many possible settings
for a search timer. You can choose the title, subtitle, description or
extended EPG categories within the description of an event to be
compared with the elements of another event.

This comparison is always done case-sensitive and for the whole
term. But the description of an event makes an exception of this.
First all text within the description will be truncated that looks
like an extended category entry, e.g. 'Rating: tip'. An extended
category entry is a line of text beginning with max. 40 signs,
followed by ':' and ending with max. 60 further signs.
The reason for this cutting is that some categories like the rating of
an event are not part of the description of the repeat of the same
event.

The remaining text will now be compared by length. If the difference
is bigger then 90%, then we rate the description of the two events as
different. If not, we apply the Levinsthein-Distance-Algorithm (LD),
which makes a fuzzy text comparison. We accept the description of the
events as equal, if LD returns a match of more then 90%.
Since LD is quite runtime intensive (O(mn)), you should not choose
'compare description' as the only comparison criterion, but combine
it always with other criterions.

=head2 2.3 How and when do we compare?

As already mentioned each search timer update checks search timers
with this feature for recordings in the past or an already existing
timer for the same event.

To remember past recordings epgsearch stores their info in the file
epgsearchdone.data. You can have a look at the contents of this file
calling 'show recordings done' in the 'actions' of the searches menu.
This file only stores info about recordings that are complete,
i.e. that started and stopped just in time. So a broken recording will
not be stored in this file and epgsearch will automatically try to
record the next repeat, if there is any.

B<How to use it?>

As you see, the whole feature depends on the quality of the EPG.
After creating such a search timer, you should first check if it does
what is intended. Therefore the menu of search results has an
additional mode for the key 'blue' named 'Timer preview'. Here you can
see, what timers the next update would create. Existing timers are
labeled with 'T', future timers with 'P'.

Hint: If the programming results in a conflict simply disable the
conflicting timer in the timers menu. The next search timer update,
will try to program a different timer for the same event, if it exists.

B<When it works not correctly :-)>

To get a better control of the programming or not-programming of the
timers when using this feature a log file was introduced. When starting
epgsearch with the command line option '-v n' where n is the log level
than you get additional info in the file epgsearch.log. Available log
levels are 0 (no logging) to 3 (extended logging). See also the manual
for the command line options.

=head1 3. Usage from other plugins or scripts

See C<epgsearch(4)>.

=head1 4. Using extended EPG info

Some EPG providers deliver additional EPG information like the type of
event, the video and audio format, cast,... in the content summary.

Note: This is different from the content descriptors introduced in vdr-1.7.11,
that are delivered as extra data with a common standard. Unfortunately not
all providers deliver this data, or the set wrong descriptors. So you can
use the approach of 'extended EPG info' here, which is a way to extract that
info from the content summary.

Using tvm2vdr or epg4vdr you can import this into vdr.
To use this information with search timers one has to configure it
with the file epgsearchcats.conf in the epgsearch config directory. The
format of the file is as follows:

 ID|category name|name in menu|values separated by ','(option)|search mode(option)

 - 'ID' should be a unique positive integer
    (changing the id later on will force you to re-edit your search timers!)
 - 'category name' is the name as delivered by the EPG provider, e.g. 'Genre'
 - 'name in menu' is the name displayed in epgsearch.
 - 'values' is an optional list of possible values
 - 'search mode' specifies the search mode:
   text comparison:
   0 - the whole term must appear as substring
   1 - all single terms (delimiters are ',', ';', '|' or '~')
       must exist as substrings. This is the default search mode.
   2 - at least one term (delimiters are ',', ';', '|' or '~')
       must exist as substring.
   3 - matches exactly
   4 - regular expression
   numerical comparison:
   10 - less
   11 - less or equal
   12 - greater
   13 - greater or equal
   14 - equal
   15 - not equal

Sample files for epgsearchcats.conf are delivered with the plugin in the
directory 'conf'.

Simply copy the one that fits for you to the epgsearch configuration directory
filename epgsearchcats.conf and then have a look to the search timers
edit menu (after a restart of VDR).

Since setting up a new epgsearchcats.conf is a lot of work, I've added
a small tool 'createcats', that makes the biggest part of the job. It
should have been compiled with the plugin and exists in the sources
directory.

See C<createcats(1)> for information about how to use it.

Internals: epgsearch scans the summary of an event for the category
name followed by ': ' for all categories that have a corresponding
value set in the search timer. The search is case sensitive regarding
the category name as also the value.

=head1 5. Replacing the standard schedule menu

To use this plugin as a replacement for the default green key, simply
put the line

 Green   @epgsearch

in your keymacros.conf. If you don't like to get another plugin entry
in your main menu, first hide it by setup. Then you could use my
launcher-plugin and put the line

 Green @launcher x

in your keymacros.conf, where x is the position of the Epgsearch
plugin within launchers menu listing.

Another approach is using a patch to VDR that replaces vdr's standard
schedule menu with epgsearch (vdr-replace-schedulemenu.diff.gz in the
patches subdir, thanks to the author Uwe/egal@vdrportal). When using
this patch the entry should look like

 Green Schedule

This patch is already included in some patch collections, like the
Bigpatch.

=head1 6. Add-ons

epgsearch delivers 2 'mini'-plugins. Both require an installed epgsearch (but
epgsearch can be hided in the main menu):

=over 4

=item - B<epgsearchonly:>

For those who only want to use the search feature and/or
search timers or simply want to have a separate main menu entry for the
search feature. This plugin creates a main menu entry 'Search' which calls
epgsearch search menu.
Activation in VDR start script with "-Pepgsearchonly".

=item - B<conflictcheckonly:>

The timer conflict check can also have its own main menu
entry which displays epgsearch conflict overview menu. It has a setup option
to display an information about the last check directly in its main menu entry.
Activation in VDR start script with "-Pconflictcheckonly".

=back

Have fun!

Christian Wieninger

=head1 Advanced description

See C<epgsearch(4)> or read online

L<http://winni.vdr-developer.org/epgsearch/README.DE>

L<http://winni.vdr-developer.org/epgsearch/README>

L<http://winni.vdr-developer.org/epgsearch/MANUAL>

=head1 SEE ALSO

C<epgsearch.conf(5)>, C<epgsearchcats.conf(5)>, C<epgsearchcmds.conf(5)>, C<epgsearchdirs.conf(5)>, C<epgsearchmenu.conf(5)>, C<epgsearchuservars.conf(5)>, C<epgsearchdone.data(5)>, C<epgsearchswitchtimer.conf(5)>, C<epgsearchblacklists.conf(5)>, C<epgsearchchangrps.conf(5)>

=head1 FILES

F<epgsearch.conf>

Searchtimers. See C<epgsearch.conf(5)>.

F<epgsearchcats.conf>

Categories, advanced epg. See C<epgsearchcats.conf(5)>.

F<epgsearchcmds.conf>

EPG-commands, like the commands in commands.conf. See C<epgsearchcmds.conf(5)>.

F<epgsearchdirs.conf>

Pre-defined patches which can be selected while editing an searchtimer. See C<epgsearchdirs.conf(5)>.

F<epgsearchmenu.conf>

Configuration of the OSD menu layout. See C<epgsearchmenu.conf(5)>.

F<epgsearchuservars.conf>

User defined variables. See C<epgsearchuservars.conf(5)>.

F<epgsearchdone.data>

The done-data. See C<epgsearchdone.data(5)>.

F<epgsearchswitchtimers.conf>

The switchtimers. See C<epgsearchswitchtimer.conf(5)>.

F<epgsearchblacklists.conf>

The blacklist. See C<epgsearchblacklists.conf(5)>.

F<epgsearchchangrps.conf>

The channelgroups. See C<epgsearchchangrps.conf(5)>.

F<epgsearchtemplates.conf>

Templates for searchtimers. See C<epgsearchtemplates.conf(5)>.

=head1 AUTHOR (man pages)

Mike Constabel <epgsearch (at) constabel (dot) net>

=head1 REPORT BUGS

Bugreports (german):

L<http://projects.vdr-developer.org/projects/plg-epgsearch>

Mailinglist:

L<http://www.vdr-developer.org/mailman/listinfo/epgsearch>

=head1 COPYRIGHT and LICENSE

Copyright (C) 2004-2010 Christian Wieninger

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Or, point your browser to http://www.gnu.org/licenses/old-licenses/gpl-2.0.html

The author can be reached at cwieninger@gmx.de

The project's page is at http://winni.vdr-developer.org/epgsearch

The MD5 code is derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm.