/usr/share/gtkpod/scripts/convert-2mp3.sh is in gtkpod-data 2.1.5-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | #!/bin/sh
# Script that converts a file into an mp3 file
#
# USAGE:
#
# convert-2mp3.sh [options] inputfile
#
# For a list of allowed options please consult gtkpod-convert-common.sh
#
# STDOUT's last line is the converted filename.
# Return Codes:
# 0 ok
# 1 input file not found
# 2 output file cannot be created
# 3 cannot get info
# 4 cannot exec decoding
# 5 cannot exec encoding
# 6 conversion failed
# 7 unknown option
#
# Constants
extension="mp3"
ENCODER_OPTS="--preset standard"
ENCODER="lame"
. ${0%/*}/gtkpod-convert-common.sh
# Check if the genre is one which lame supports
if [ -n "$genre" ] && `"$encoder" --genre-list 2>&1 | cut -c 5- | grep -qi "^$genre$"`; then
usegenre=$genre
else
usegenre=""
# check for id3v2
id3v2=`which id3v2`
if [ -n "$id3v2" ]; then
useid3v2=1
fi
fi
if [ $filetype = "wav" ]; then
"$encoder" $ENCODER_OPTS --add-id3v2 --tt "$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn "$track" --tg "$usegenre" "$infile" "$outfile" >> "$LOG" 2>&1
else
"$decoder" $options "$infile" | "$encoder" $ENCODER_OPTS --add-id3v2 --tt "$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn "$track" --tg "$usegenre" - "$outfile" >> "$LOG" 2>&1
fi
# Check result
if [ "x$?" != "x0" ]; then
exit 6
fi
# Try to set the genre with id3v2 if needed. This may fail as older versions of
# id3v2 did not support genre strings in place of numeric genre id's
if [ -n "$useid3v2" ]; then
$id3v2 -g "$genre" "$outfile" || :
fi
# Seems to be ok: display filename for gtkpod
echo $outfile
exit 0
|