Project

General

Profile

Actions

Feature #4052

closed

More information for Autorec in DVR recordings.

Added by Joe User over 8 years ago. Updated over 5 years ago.

Status:
Fixed
Priority:
Normal
Assignee:
-
Category:
User Interface
Target version:
Start date:
2016-10-28
Due date:
% Done:

0%

Estimated time:

Description

I recently was looking at my upcoming recordings and I found 4 recordings that should not be there. They all show:

Status:Scheduled for recording
Comment:Auto recording: Created from EPG query
Autorec: (Created from EPG query)

Almost all of my scheduled recordings are created from about 30 autorec entries. All of the autorec entries were created through the EPG (hence the auto generated comment.) But aside form going back and manually changing the comment for each autorec, how do I know which autorec rule each scheduled recording is from? Normally it is obvious because the scheduled recording is what I want (correct title) but in the case of ones that are incorrect, there is no way of knowing which autorec created the scheduled recording.

Maybe you can add the title from the autorec entry to the information of the scheduled recording to make it easier to track down? Or maybe when creating an autorec from the EPG, include the title in the comment (ie - "Created from EPG query - Title") - then it would propagate to the scheduled recordings. (and finished/failed/etc recordings)

BTW - I can see if I search the dvr log directory for the scheduled recording, the file shows the id of the autorec from which it was generated, but it would be much easier to be able to do it from the web interface.

For now I just made a quick script to append the title to the comment in each autorec...

#!/bin/bash

cp -rp autorec autorec.sv

for file in autorec.sv/*
do
    fname=$(basename "$file")
    jq '.comment = .comment + " - " + .title' $file > autorec/$fname
done

Actions

Also available in: Atom PDF