add aucdtect docker function

legacy
Simon Bruder 2018-04-09 15:53:46 +00:00
parent e0ae7683e0
commit f941c4879f
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 9 additions and 0 deletions

View File

@ -40,3 +40,12 @@ function vobsub2srt() {
--blacklist '„“”|/\`_~<>' \
$@
}
function aucdtect() {
docker run --rm \
-v "$PWD:/home/aucdtect/:ro" \
-e uid=$(id -u) \
-e gid=$(id -g) \
aucdtect \
$@
}