Create GetProgress_QaacDec.progress

This commit is contained in:
Wiesław Šoltés 2017-12-05 08:46:38 +01:00 коммит произвёл GitHub
Родитель 7d3e002714
Коммит 26322c9f9d
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,4 @@
function GetProgress(s)
if string.match(s, '%ssamples processed%s') ~= nil then return "100";
else return string.match(s, '%[(%d+.%d+)%%%]'); end;
end