Update of /cvsroot/gtkpod/gtkpod/scripts
In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv12163/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:
fixed some bugs in conversion scripts (Mario Rossi).
Index: convert-flac2m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-flac2m4a.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- convert-flac2m4a.sh 5 Feb 2007 08:45:56 -0000 1.2
+++ convert-flac2m4a.sh 6 Feb 2007 12:46:57 -0000 1.3
@@ -24,7 +24,7 @@
# 6 conversion failed
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -44,7 +44,7 @@
m4afile="/tmp/$m4afile.m4a"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with faac"
+[ -z "$comment" ] && comment="Encoded for gtkpod with faac"
#echo "Converting \"$flacfile\" into \"$m4afile\""
Index: convert-flac2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-flac2mp3.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- convert-flac2mp3.sh 5 Feb 2007 08:45:56 -0000 1.5
+++ convert-flac2mp3.sh 6 Feb 2007 12:46:57 -0000 1.6
@@ -24,7 +24,7 @@
# 6 conversion failed
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -44,7 +44,7 @@
mp3file="/tmp/$mp3file.mp3"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with lame"
+[ -z "$comment" ] && comment="Encoded for gtkpod with lame"
#echo "Converting \"$flacfile\" into \"$mp3file\""
Index: convert-m4a2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-m4a2mp3.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- convert-m4a2mp3.sh 5 Feb 2007 08:45:56 -0000 1.1
+++ convert-m4a2mp3.sh 6 Feb 2007 12:46:57 -0000 1.2
@@ -25,7 +25,7 @@
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -45,7 +45,7 @@
mp3file="/tmp/$mp3file.mp3"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with lame"
+[ -z "$comment" ] && comment="Encoded for gtkpod with lame"
#echo "Converting \"$m4afile\" into \"$mp3file\""
Index: convert-mp32m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-mp32m4a.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- convert-mp32m4a.sh 5 Feb 2007 08:45:56 -0000 1.1
+++ convert-mp32m4a.sh 6 Feb 2007 12:46:57 -0000 1.2
@@ -25,7 +25,7 @@
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -45,7 +45,7 @@
m4afile="/tmp/$m4afile.m4a"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with faac"
+[ -z "$comment" ] && comment="Encoded for gtkpod with faac"
#echo "Converting \"$m4afile\" into \"$mp3file\""
Index: convert-ogg2m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-ogg2m4a.sh,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- convert-ogg2m4a.sh 5 Feb 2007 08:45:56 -0000 1.2
+++ convert-ogg2m4a.sh 6 Feb 2007 12:46:57 -0000 1.3
@@ -24,7 +24,7 @@
# 6 conversion failed
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -44,7 +44,7 @@
m4afile="/tmp/$m4afile.m4a"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with faac"
+[ -z "$comment" ] && comment="Encoded for gtkpod with faac"
#echo "Converting \"$oggfile\" into \"$m4afile\""
Index: convert-ogg2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-ogg2mp3.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- convert-ogg2mp3.sh 5 Feb 2007 08:45:56 -0000 1.5
+++ convert-ogg2mp3.sh 6 Feb 2007 12:46:57 -0000 1.6
@@ -24,7 +24,7 @@
# 6 conversion failed
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -44,7 +44,7 @@
mp3file="/tmp/$mp3file.mp3"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with lame"
+[ -z "$comment" ] && comment="Encoded for gtkpod with lame"
#echo "Converting \"$oggfile\" into \"$mp3file\""
Index: convert-wav2m4a.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-wav2m4a.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- convert-wav2m4a.sh 5 Feb 2007 08:45:56 -0000 1.1
+++ convert-wav2m4a.sh 6 Feb 2007 12:46:57 -0000 1.2
@@ -24,7 +24,7 @@
# 6 conversion failed
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -44,7 +44,7 @@
m4afile="/tmp/$m4afile.m4a"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with faac"
+[ -z "$comment" ] && comment="Encoded for gtkpod with faac"
#echo "Converting \"$wavfile\" into \"$m4afile\""
Index: convert-wav2mp3.sh
===================================================================
RCS file: /cvsroot/gtkpod/gtkpod/scripts/convert-wav2mp3.sh,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- convert-wav2mp3.sh 5 Feb 2007 08:45:56 -0000 1.1
+++ convert-wav2mp3.sh 6 Feb 2007 12:46:57 -0000 1.2
@@ -24,7 +24,7 @@
# 6 conversion failed
# Get parameters
-while getopts a:A:T:t:g:c: opt ; do
+while getopts a:A:T:t:g:c:y: opt ; do
case "$opt" in
a) artist="$OPTARG" ;;
A) album="$OPTARG" ;;
@@ -44,7 +44,7 @@
mp3file="/tmp/$mp3file.mp3"
# Default values
-[ -z "$comment"] && comment="Encoded for gtkpod with lame"
+[ -z "$comment" ] && comment="Encoded for gtkpod with lame"
#echo "Converting \"$wavfile\" into \"$mp3file\""
-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier.
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
gtkpod-cvs2 mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/gtkpod-cvs2