forked from xwax/xwax
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathimport
executable file
·41 lines (32 loc) · 834 Bytes
/
import
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/bin/sh
#
# Audio import handler for xwax
#
# This script takes an output sample rate and filename as arguments,
# and outputs signed, little-endian, 16-bit, 2 channel audio on
# standard output. Errors to standard error.
#
# You can adjust this script yourself to customise the support for
# different file formats and codecs.
#
FILE="$1"
RATE="$2"
case "$FILE" in
*.cdaudio)
echo "Calling CD extract..." >&2
exec cdparanoia -r `cat "$FILE"` -
;;
*.mp3)
echo "Calling MP3 decoder..." >&2
exec mpg123 -q -s --rate "$RATE" --stereo "$FILE"
;;
*)
echo "Calling fallback decoder..." >&2
FFMPEG=$(which ffmpeg 2> /dev/null || which avconv 2> /dev/null)
if [ -z "$FFMPEG" ]; then
echo "$0: no ffmpeg or avconv available to decode file" >&2
exit 1
fi
exec "$FFMPEG" -v 0 -i "$FILE" -f s16le -ar "$RATE" -
;;
esac