Update of /cvsroot/gtkpod/gtkpod/scripts
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv30212/scripts
Modified Files:
convert-flac2m4a.sh convert-flac2mp3.sh convert-m4a2mp3.sh
convert-mp32m4a.sh convert-ogg2m4a.sh convert-ogg2mp3.sh
convert-wav2m4a.sh convert-wav2mp3.sh
Log Message:
* scripts/convert-flac2m4a.sh
scripts/convert-flac2mp3.sh
scripts/convert-m4a2mp3.sh
scripts/convert-mp32m4a.sh
scripts/convert-ogg2m4a.sh
scripts/convert-ogg2mp3.sh
scripts/convert-wav2m4a.sh
scripts/convert-wav2mp3.sh:
Track number was not set correctly in converted file. Thanks
to Javier Kohen for spotting this.
Index: convert-flac2m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-flac2m4a.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- convert-flac2m4a.sh 23 Apr 2007 15:33:29 -0000 1.4
+++ convert-flac2m4a.sh 7 May 2007 11:51:36 -0000 1.5
@@ -86,7 +86,7 @@
fi
# Launch command
-exec "$flac" -d -c -- "$infile" | "$faac" -o "$outfile" -q 150 -c 22000 -w
--artist "$artist" --title "$title" --year "$year" --album "$album" --track
"$tracknum" --genre "$genre" --comment "$comment" -
+exec "$flac" -d -c -- "$infile" | "$faac" -o "$outfile" -q 150 -c 22000 -w
--artist "$artist" --title "$title" --year "$year" --album "$album" --track
"$track" --genre "$genre" --comment "$comment" -
# Check result
if [ "x$?" != "x0" ]; then
Index: convert-flac2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-flac2mp3.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- convert-flac2mp3.sh 5 May 2007 04:11:48 -0000 1.8
+++ convert-flac2mp3.sh 7 May 2007 11:51:36 -0000 1.9
@@ -97,7 +97,7 @@
fi
# Launch command
-exec "$flac" -d -c -- "$infile" | "$lame" --preset standard --add-id3v2 --tt
"$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn
"$tracknum" $genreopt - "$outfile"
+exec "$flac" -d -c -- "$infile" | "$lame" --preset standard --add-id3v2 --tt
"$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn
"$track" $genreopt - "$outfile"
# Check result
if [ "x$?" != "x0" ]; then
Index: convert-m4a2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-m4a2mp3.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- convert-m4a2mp3.sh 23 Apr 2007 15:33:29 -0000 1.3
+++ convert-m4a2mp3.sh 7 May 2007 11:51:36 -0000 1.4
@@ -86,7 +86,7 @@
fi
# Launch command
-exec "$faad" -o - "$infile" | "$lame" --preset standard --add-id3v2 --tt
"$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn
"$tracknum" --tg "$genre" - "$outfile"
+exec "$faad" -o - "$infile" | "$lame" --preset standard --add-id3v2 --tt
"$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn
"$track" --tg "$genre" - "$outfile"
# Check result
if [ "x$?" != "x0" ]; then
Index: convert-mp32m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-mp32m4a.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- convert-mp32m4a.sh 23 Apr 2007 15:33:29 -0000 1.3
+++ convert-mp32m4a.sh 7 May 2007 11:51:36 -0000 1.4
@@ -86,7 +86,7 @@
fi
# Launch command
-exec "$lame" --decode "$infile" - | "$faac" -o "$outfile" -q 150 -c 22000 -w
--artist "$artist" --title "$title" --year "$year" --album "$album" --track
"$tracknum" --genre "$genre" --comment "$comment" -
+exec "$lame" --decode "$infile" - | "$faac" -o "$outfile" -q 150 -c 22000 -w
--artist "$artist" --title "$title" --year "$year" --album "$album" --track
"$track" --genre "$genre" --comment "$comment" -
# Check result
if [ "x$?" != "x0" ]; then
Index: convert-ogg2m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-ogg2m4a.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- convert-ogg2m4a.sh 23 Apr 2007 15:33:29 -0000 1.4
+++ convert-ogg2m4a.sh 7 May 2007 11:51:36 -0000 1.5
@@ -86,7 +86,7 @@
fi
# Launch command
-exec "$oggdec" --output - -- "$infile" | "$faac" -o "$outfile" -q 150 -c 22000
-w --artist "$artist" --title "$title" --year "$year" --album "$album" --track
"$tracknum" --genre "$genre" --comment "$comment" -
+exec "$oggdec" --output - -- "$infile" | "$faac" -o "$outfile" -q 150 -c 22000
-w --artist "$artist" --title "$title" --year "$year" --album "$album" --track
"$track" --genre "$genre" --comment "$comment" -
# Check result
if [ "x$?" != "x0" ]; then
Index: convert-ogg2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-ogg2mp3.sh,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- convert-ogg2mp3.sh 23 Apr 2007 15:33:31 -0000 1.8
+++ convert-ogg2mp3.sh 7 May 2007 11:51:36 -0000 1.9
@@ -97,7 +97,7 @@
fi
# Launch command
-exec "$oggdec" --output - -- "$infile" | "$lame" --preset standard --add-id3v2
--tt "$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn
"$tracknum" $genreopt - "$outfile"
+exec "$oggdec" --output - -- "$infile" | "$lame" --preset standard --add-id3v2
--tt "$title" --ta "$artist" --tl "$album" --ty "$year" --tc "$comment" --tn
"$track" $genreopt - "$outfile"
# Check result
if [ "x$?" != "x0" ]; then
Index: convert-wav2m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-wav2m4a.sh,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- convert-wav2m4a.sh 23 Apr 2007 15:33:31 -0000 1.3
+++ convert-wav2m4a.sh 7 May 2007 11:51:36 -0000 1.4
@@ -80,7 +80,7 @@
fi
# Launch command
-"$faac" -o "$outfile" -q 150 -c 22000 -w --artist "$artist" --title "$title"
--year "$year" --album "$album" --track "$tracknum" --genre "$genre" --comment
"$comment" "$infile"
+"$faac" -o "$outfile" -q 150 -c 22000 -w --artist "$artist" --title "$title"
--year "$year" --album "$album" --track "$track" --genre "$genre" --comment
"$comment" "$infile"
# Check result
if [ "x$?" != "x0" ]; then
Index: convert-wav2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-wav2mp3.sh,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- convert-wav2mp3.sh 5 May 2007 04:49:24 -0000 1.4
+++ convert-wav2mp3.sh 7 May 2007 11:51:36 -0000 1.5
@@ -91,7 +91,7 @@
fi
# Launch command
-"$lame" --preset standard --add-id3v2 --tt "$title" --ta "$artist" --tl
"$album" --ty "$year" --tc "$comment" --tn "$tracknum" $genreopt "$infile"
"$outfile"
+"$lame" --preset standard --add-id3v2 --tt "$title" --ta "$artist" --tl
"$album" --ty "$year" --tc "$comment" --tn "$track" $genreopt "$infile"
"$outfile"
# Check result
if [ "x$?" != "x0" ]; then
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2