char *de_owner;
char *de_creator;
char *de_comment;
+ char *de_uri; /* Programme unique ID */
htsmsg_t *de_files; /* List of all used files */
char *de_directory; /* Can be set for autorec entries, will override any
directory setting from the configuration */
htsmsg_add_str(conf, "episode", s);
if (e->episode && e->episode->copyright_year)
htsmsg_add_u32(conf, "copyright_year", e->episode->copyright_year);
+ if (e->episode && e->episode->uri)
+ htsmsg_add_str(conf, "uri", e->episode->uri);
} else if (title) {
l = lang_str_create();
lang_str_add(l, title, lang, 0);
.off = offsetof(dvr_entry_t, de_file_removed),
.opts = PO_HIDDEN | PO_NOUI,
},
+ {
+ .type = PT_STR,
+ .id = "uri",
+ .name = N_("Program unique ID (from grabber)"),
+ .desc = N_("Program unique ID (from grabber), such as MV101010101.0000"),
+ .off = offsetof(dvr_entry_t, de_uri),
+ .opts = PO_RDONLY | PO_EXPERT
+ },
{
.type = PT_STR,
.id = "autorec",