Improve EDL Auth detection

This commit is contained in:
Bjoern Kerler 2021-01-15 00:24:48 +01:00
parent cc59c89bd5
commit ed0fc7c57a

View file

@ -367,7 +367,7 @@ def main(argv):
auth = ""
with open(item.filename, "rb") as rf:
data = rf.read()
if b"EDL Auth" in data:
if b"sig tag can" in data:
auth = "_EDLAuth"
if b"peek\x00" in data:
auth += "_peek"