BatchEncoder/config/progress/GetProgress_OfrDec.progress

5 строки
136 B
Plaintext

function GetProgress(s)
if string.match(s, 'done.') ~= nil then return "100";
else return string.match(s, '(%d+.%d+)%%'); end;
end