How to detect if a ts file is encrypted

Chris Bsa

New Member
I can't find the answer to this, I have tried looking.

My HDR-FOX T2 has recently failed.

I am running a batch file using stripts to decrypt my files.

Windows stripts works well, thank you

I have a mix of encrypted and unencrypted files on my disk.
Is there a simple way of my batch file determining if the ts file is encrypted?
 
Yes, missed that. Sorry.
Tried -a -A to see if analyse gave a report

stripts is an excellent piece of software. it's currently unencrypting all my files on my disk (That need unencrypting!)

Chatgpt helped with the batch file
 
I just cobbled this together a few years ago (for use on the box itself):
Code:
humax# cat decryptall
#!/mod/bin/jimsh

source /mod/webif/lib/setup
require ts.class queue.class

proc generate {ts} {
        set rfile [file rootname [$ts get file]]
        if {[$ts flag Radio]} return
        if {![$ts flag ODEncrypted]} return
        queue insert $ts decrypt
        puts "Queued: [exec basename $rfile]"
}

ts iterate [lambda {ts} { generate $ts }] false "" true
 
Power supply is probably OK. I've swapped in a known working one. The fault is probably on the main board.

No indicators work on the display/front panel so appears totally dead.
No standby light.

I've swapped the display board too.
No hard disk plugged in either.

I might try replacing all the electrolytic capacitors. They must be old
 
Back
Top