[mythtv-users] commflagging and cutlists

Thomas Boehm mythtv-users at lists.boehmi.net
Sat Jan 18 22:13:27 UTC 2014


Yan Seiner wrote:
> Is there a way to tell that the cutlist is ready to go by looking at the
> database (ie from a script)?  Is there a cutlist flag or something to query?

Something like this executed on the backend should do

mysql -e "SELECT cutlist FROM recorded WHERE chanid = '...' AND
starttime = '...';" --batch --skip-column-names -u mythtv -pYOURPASSWORD
mythconverg


OR if you only have the filename of the recording use

WHERE basename = 'filename'

instead of

WHERE chanid = '...' AND starttime = '...'

it should either return 0 or 1.

HTH
Thomas


More information about the mythtv-users mailing list