LinuxQuestions.org
Visit Jeremy's Blog.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 03-29-2013, 02:30 PM   #1
jarednielsen
LQ Newbie
 
Registered: Aug 2012
Posts: 4

Rep: Reputation: Disabled
How to access & use command line utilities in bash scripts? (spec. SoX)


Hi all,
Stumped on a project. My question is: how do I use command line utilities in a bash script?

I'm writing a script that I want to access SoX. I want to iterate through a directory of .ogg files, grab the length of each file, do some math to determine the speed at which to process the file so that all of the files in the directory will be the same length.

Here's what I've got:
Code:
#!/bin/bash

a=1
for i in *.ogg; do
	trackLength=sox --i -D "$i"
	echo ${trackLength}
	trackSpeed=(${trackLength} / 1000)
	echo ${trackSpeed}
	new=$(printf "converted/%03d.ogg" ${a})
	sox "$i" ${new} speed ${trackSpeed}
	let a=a+1
done
The problem I'm encountering is in the first call on SoX:
Code:
trackLength=sox --i -D "$i"
returns:
Code:
./test.sh: line 5: --i: command not found
But running this snippet outside of a bash script works fine.

I next tried putting the first SoX call in quotes, which, when run, only echos the call itself not the integer I'm looking for.

How do I go about doing this?

Any help is greatly appreciated. Many thanks in advance.
 
Old 03-29-2013, 02:44 PM   #2
suicidaleggroll
LQ Guru
 
Registered: Nov 2010
Location: Colorado
Distribution: OpenSUSE, CentOS
Posts: 5,573

Rep: Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142Reputation: 2142
Quote:
Originally Posted by jarednielsen View Post
The problem I'm encountering is in the first call on SoX:
Code:
trackLength=sox --i -D "$i"
returns:
Code:
./test.sh: line 5: --i: command not found
But running this snippet outside of a bash script works fine.
Doubtful

Perhaps running
Code:
sox --i -D file.ogg
works fine on the command line, but running
Code:
trackLength=sox --i -D file.ogg
will not

You need to wrap commands in $() in order to run them that way, just like you're doing with your printf command a few lines down. A BASH script is nothing more than a sequence of ordinary commands, all of which can be run on the normal command line in the exact same way.

Also,
Code:
trackSpeed=(${trackLength} / 1000)
will most likely not work in the way you expect. BASH can only do rudimentary integer math, you probably want to use bc for that calculation:
Code:
trackSpeed=$(echo "$trackLength / 1000" | bc -l)

Last edited by suicidaleggroll; 03-29-2013 at 02:46 PM.
 
Old 03-29-2013, 04:49 PM   #3
jarednielsen
LQ Newbie
 
Registered: Aug 2012
Posts: 4

Original Poster
Rep: Reputation: Disabled
Thanks!
Yes, I meant "sox --i -D file.ogg". Should have clarified.
Also, thanks for pointing me in the direction of bc.
That would have been my next question.
 
Old 03-30-2013, 11:12 AM   #4
David the H.
Bash Guru
 
Registered: Jun 2004
Location: Osaka, Japan
Distribution: Arch + Xfce
Posts: 6,852

Rep: Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037Reputation: 2037
Code:
trackSpeed=(${trackLength} / 1000)
Not to mention that this isn't arithmetic expression syntax anyway, but the pattern for setting an array.


For the most part it looks like pretty good. Just a fcouple more points, starting with how I can't get "sox --i" to work for me. For some reason it balks at the syntax. But "soxi -D" does work.

Second, always remember to quote your variables and other parameters. It may not matter much here, since you're only dealing with digits, but it's very important to get into the habit of doing it properly.

The rest is mostly just a matter of streamlining (untested, but should work):


Code:
#!/bin/bash

for i in *.ogg; do

	trackLength=$( soxi -D "$i" )
	echo "$trackLength"
	trackSpeed=$( bc <<<"scale=8 ; $trackLength / 1000" )
	echo "$trackSpeed"
	printf -v new "converted/%03d.ogg" "$(( ++a ))"
	sox "$i" "$new" speed "$trackSpeed"

done
In case you aren't aware, "++a" is the pre-increment operator. It adds one to the variable just before it's used. So the first time you use it it will equal 1. The opposite post-increment operator "a++", adds the number just after it's used.

And as you can see, bash's version of printf has an option for directly setting the output to a variable, instead of printing it to stdout.

I added a scale to the bc calculation to specify the decimal precision, instead of the "-l" mathlib option used above. And I used a here string to pass it the expression, instead of echo+pipe. It's a little cleaner and means one less forked sub-shell.

Last edited by David the H.; 03-30-2013 at 11:16 AM.
 
  


Reply

Tags
bash, bash scripting, sox



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Can the sox command handle variables in shell scripts RedNeck-LQ Programming 7 09-12-2011 08:01 PM
What bash command line utilities do I need? exl75 Linux - Newbie 8 04-16-2007 08:06 AM
Change kde theme & wallpaper from command line or start scripts? JHuizingh Linux - Software 2 12-11-2003 06:44 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 09:54 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration