Create GetProgress_OpusDec.progress

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

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

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