13 lines
249 B
Shell
Executable file
13 lines
249 B
Shell
Executable file
#!/bin/sh
|
|
if ! getextattr user subtitle-languages "$@" >/dev/null 2>&1
|
|
then
|
|
"$(dirname "$0")/../libexec/probe-media.sh" "$@"
|
|
fi
|
|
|
|
getextattr user subtitle-languages "$@" | awk '
|
|
BEGIN { FS="\t"; }
|
|
{
|
|
if (length($2) > 0)
|
|
print $1 ": " $2;
|
|
}
|
|
'
|