Guest User

Untitled

a guest
Aug 19th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. dcerouter_112602:/var/www/iOrbiter# svdrpsend -p 2001 help pute
  2. 220 dcerouter SVDRP VideoDiskRecorder 1.7.22; Mon May 28 23:21:29 2012; UTF-8
  3. 214-PUTE [ file ]
  4. 214- Put data into the EPG list. The data entered has to strictly follow the
  5. 214- format defined in vdr(5) for the 'epg.data' file. A '.' on a line
  6. 214- by itself terminates the input and starts processing of the data (all
  7. 214- entered data is buffered until the terminating '.' is seen).
  8. 214- If a file name is given, epg data will be read from this file (which
  9. 214- must be accessible under the given name from the machine VDR is running
  10. 214- on). In case of file input, no terminating '.' shall be given.
  11. 214 End of HELP info
  12.  
  13. EPG DATA
  14. The file epg.data contains the EPG data in an easily parsable format. The first character of each line
  15. defines what kind of data this line contains.
  16.  
  17. The following tag characters are defined:
  18.  
  19. C <channel id> <channel name>
  20. E <event id> <start time> <duration> <table id> <version>
  21. T <title>
  22. S <short text>
  23. D <description>
  24. G <genre> <genre>...
  25. R <parental rating>
  26. X <stream> <type> <language> <descr>
  27. V <vps time>
  28. e
  29. c
  30.  
  31. Lowercase characters mark the end of a sequence that was started by the corresponding uppercase character.
  32. The outer frame consists of a sequence of one or more C...c (Channel) entries. Inside these any number of
  33. E...e (Event) entries are allowed. All other tags are optional (although every event should at least have a
  34. T entry).
  35.  
  36. There may be several X tags, depending on the number of tracks (video, audio etc.) the event provides.
  37.  
  38. <channel id> is the "channel ID", made up from the parameters defined in 'channels.conf'
  39. <channel name> is the "name" as in 'channels.conf' (for information only, may be left out)
  40. <event id> is a 32 bit unsigned int, uniquely identifying this event
  41. <start time> is the time (as a time_t integer) in UTC when this event starts
  42. <duration> is the time (in seconds) that this event will take
  43. <table id> is a hex number that indicates the table this event is contained in (if this is left empty or 0 this event will not be overwritten or modified by data that comes from the DVB stream)
  44. <version> is a hex number that indicates the event's version number inside its table (optional, ignored when reading EPG data)
  45. <title> is the title of the event
  46. <short text> is the short text of the event (typically the name of the episode etc.)
  47. <description> is the description of the event (any '|' characters will be interpreted as newlines)
  48. <genre> is a two digit hex code, as defined in ETSI EN 300 468, table 28 (up to 4 genre codes are supported)
  49. <parental rating> is the minimum age of the intended audience
  50. <stream> is the stream content (1 = MPEG2 video, 2 = MP2 audio, 3 = subtitles, 4 = AC3 audio, 5 = H.264 video, 6 = HEAAC audio)
  51. <type> is the stream type according to ETSI EN 300 468
  52. <language> is the three letter language code (optionally two codes, separated by '+')
  53. <descr> is the description of this stream component
  54. <vps time> is the Video Programming Service time of this event
  55.  
  56. This file will be read at program startup in order to restore the results of previous EPG scans.
  57.  
  58. Note that the event id that comes from the DVB data stream is actually just 16 bit wide. The internal repre‐
  59. sentation in VDR allows for 32 bit to be used, so that external tools can generate EPG data that is guaran‐
  60. teed not to collide with the ids of existing data.
Add Comment
Please, Sign In to add comment