here is what i am trying to do convert wavs to mp3s i just need some help in converting dos batch files to linux shell scripts here is a link to give you more info http://www.linuxforums.org/forum/topic-39733.html
Garf
Apr 13 2005, 15:57
The problem is probably that you need to mark the scripts as executable on linux.
For example
chmod u+x myscriptname.sh
kaibab
Apr 13 2005, 15:59
i am kinda new to doing shell scripting
Benjamin Lebsanft
Apr 13 2005, 16:59
OT: may I ask why you use -b 192 and -B 320 when using -V4 ? -mj is also the default. Seems odd.
If you use bash, you need something like:
CODE
list=`ls ~/path-to-your-waves`
for files in $list do if [[ -f $files && ${files: -3} == "wav" ]]; then lame -V4 $files fi done
xmixahlx
Apr 13 2005, 18:02
just write a for/do script to encode.
CODE
#!/bin/sh for file in *wav do lame --alt-preset standard "$file" done
CODE
#!/bin/sh for dir in * do cd "$dir" ~/bin/myfuzzylamescript.sh cd .. done
kaibab
Apr 14 2005, 21:45
i have tried the scripts in the way that my batch files were written: bash -x scriptname.sh it said it couldn't find the files how do split the commands so you can use only one shell script file? do i need to add #!/bin/bash before each lame command?
kaibab
Apr 14 2005, 21:46
i have tried the scripts in the way that my batch files were written: bash -x scriptname.sh it said it couldn't find the files how do split the commands so you can use only one shell script file? do i need to add #!/bin/bash before each lame command?
kaibab
Apr 14 2005, 21:47
i have tried the scripts in the way that my batch files were written: bash -x scriptname.sh it said it couldn't find the files how do split the commands so you can use only one shell script file? do i need to add #!/bin/bash before each lame command?
kaibab
Apr 14 2005, 21:48
i have tried the scripts in the way that my batch files were written: bash -x scriptname.sh it said it couldn't find the files how do split the commands so you can use only one shell script file? do i need to add #!/bin/bash before each lame command?
xmixahlx
Apr 15 2005, 00:12
whoa there... settle down
try $ sh scriptname.sh
kaibab
Apr 15 2005, 01:56
QUOTE (xmixahlx @ Apr 14 2005, 05:12 PM)
whoa there... settle down
sorry about the triple posting the stupid browser wouldn't load the next page this morning the connection showed that it wasn't loading anything
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.