In that case, the OPT+ option wouldn't help you much anyway. (By the way, no need to go into 'rename' to get copyable text, just click on the file name, select, copy and paste to a file editor.)Could do that but I mostly control the humax remotely to download files to my media server for processing when I get back in, and when I am in the humax is not always turned on.
....
Those processes do create tags as part of the extraction if I remember correctly.Is the mp3 one created by the 'Extract Audio' or 'Auto audio' options?
If so would it make more sense to request creation of the tags automatically as part of those processes?
You could just write a recmon applet like this:As subject.
Would it be possible to add an item to the the OPT+ menu to save the synopsis of a program as a text file with the filename of the item as it's name?
#!/mod/bin/jimsh
if {[lindex $argv 0] ne "-stop"} exit
source /mod/webif/lib/setup
require ts.class
set file [lindex $argv 1]
set ts [ts fetch "$file.ts"]
if {$ts eq "0"} exit
set fd [open "$file.txt" w]
puts $fd [$ts get synopsis]
$fd close
humax# chmod +x /mod/etc/recmon.d/savesynopsis