14 lines
169 B
Bash
Executable File
14 lines
169 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -u
|
|
|
|
file="${1:?missing file path}"
|
|
|
|
ffmpeg \
|
|
-hide_banner \
|
|
-nostdin \
|
|
-v error \
|
|
-i "$file" \
|
|
-map 0:a:0 \
|
|
-f null - \
|
|
>/dev/null
|