LinuxQuestions.org
Latest LQ Deal: Latest LQ Deals
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-22-2009, 02:44 PM   #1
cbjhawks
Member
 
Registered: Oct 2001
Location: Overland Park, KS
Distribution: Kubuntu 22.04
Posts: 375

Rep: Reputation: 30
AutoLame user Q...long


I downloaded autolame-1.17.sh.gz and unzipped/untarred it with Ark (not sure this is the correct way...I search but couldnt find the proper tar command) to a directory called /home/username/autolame...I then created an in and out directory per the instructions. I have installed lame encoder and found it at /usr/bin/lame directory.

If I understand the instructions correctly, all I should need to do is copy/drag a wav file to the in directory and wait...the output should be in the out directory. After 2 hours of waiting and rechecking nothing has shown up in the out directory.

I'm not sure if my settings/scripts are set correctly...would someone mind looking over and provide suggestions...how do I even run autolame, copy/drag file to in directory? My settings are below....thanks.

#!/bin/sh
#############################################################################
#
# autolame $Revision: 1.17 $ $Date: 2003/04/04 19:39:21 $
# automatic encoding of .wav files
#
# Copyright (C) 2000 Christian Garbs <mitch@uni.de>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
#############################################################################
#
# Get the most current version here:
# http://www.h.shuttle.de/mitch/stuff.en.html
#
# $Id: autolame.sh,v 1.17 2003/04/04 19:39:21 mitch Exp $
#
#############################################################################
#
# INSTALLATION:
#
# Copy this script into a directory (this directory will be the autolame
# root directory). Then create two subdirectories called 'in' and 'out'
# and edit the following variables to your needs:
#
#
# ===> autolame root
#
ROOTDIR=/home/cbjhawks/autolame
#
#
# ===> lockfile
# (it's best to remove this file on every bootup)
#
LOCKFILE=$ROOTDIR/autolame.LOCK
#
#
# ===> encoder (this doesn't need to be lame, others will work, too)
#
ENCODER=/usr/bin/lame
ENCODERPARAMS=-hk
#
# another encoder:
#ENCODER=/usr/local/bin/notlame
#ENCODERPARAMS="-h -p -t -b 160"
#
#
# ===> where to show status messages
#
# current console/no redirection:
SCREEN=
#
# on this tty (must be writable for this user!)
#SCREEN=/dev/tty11
#
# be quiet:
#SCREEN=/dev/null
#
# logfile:
#SCREEN=/var/log/autolame.log
#
#
#
# ===> nice level
#
NICE=13
#
#
# ===> rescan file (this is just used as a flag)
#
RESCAN=$ROOTDIR/autolame.RESCAN
#
#
# ===> external programs:
#
# If your $PATH is set correctly, you don't need explicit paths: (see below)

BASENAME=basename
DATE=date
DIRNAME=dirname
FIND=find
MKDIR=mkdir
MV=mv
RENICE=renice
RM=rm
RMDIR=rmdir
SED=sed
TOUCH=touch
#
# This works fine for my SuSE 6.3:
#BASENAME=/usr/bin/basename
#DATE=/bin/date
#DIRNAME=/usr/bin/dirname
#FIND=/usr/bin/find
#MKDIR=/bin/mkdir
#MV=/bin/mv
#RENICE=/usr/bin/renice
#RM=/bin/rm
#RMDIR=/bin/rmdir
#SED=/usr/bin/sed
#TOUCH=/usr/bin/touch
#
# These should do on Red Hat 6.2:
#BASENAME=/bin/basename
#DATE=/bin/date
#DIRNAME=/bin/dirname
#FIND=/usr/bin/find
#MKDIR=/bin/mkdir
#MV=/bin/mv
#RENICE=/usr/bin/renice
#RM=/bin/rm
#RMDIR=/bin/rmdir
#SED=/bin/sed
#TOUCH=/bin/touch
#
#
#
# This script should be called periodically (e.g. from cron).
# Simply put your .wav files into the 'in' directory and wait a bit.
# The encoded files will written to the 'out' directory (LOOK OUT: duplicate
# names will be overwritten silently!). The already encoded .wav files will
# be erased.
#
# If you call this script with "-s" (silent) as an argument, the
# message "already running!" will not be displayed if another instance
# if autolame is running.
#
#############################################################################
#
# YOU DON'T NEED TO EDIT ANYTHING BEYOND...
#
#############################################################################
#
...I have deleted anything after this area of the script...thanks again.
This is my current $PATH statement:

cbjhawks@linux-801d:~> echo $PATH
/opt/kde3/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin/X11:/usr/X11R6/bin:/usr/games:/usr/lib/jvm/jre/bin:/usr/lib/mit/bin:/usr/lib/mit/sbin:/opt/gnome/bin:/usr/lib/qt3/bin
 
Old 03-22-2009, 02:55 PM   #2
snowman81
Member
 
Registered: Aug 2006
Location: Michigan
Distribution: Ubuntu
Posts: 282

Rep: Reputation: 30
I can't uncompress autolame since I'm at work but I'll venture a guess and say no cron job was created. If it wasn't you'll be waiting awhile. Can you post the instructions?
 
Old 03-22-2009, 04:42 PM   #3
rjlee
Senior Member
 
Registered: Jul 2004
Distribution: Ubuntu 7.04
Posts: 1,994

Rep: Reputation: 76
Quote:
Originally Posted by cbjhawks View Post
# This script should be called periodically (e.g. from cron).
This is the critical line in the script. It basically says that you need to run the script periodically; it doesn't do anything to set this up for you.

So you need to set up a cron job to run this. To do that, first run this at the command-line:

[code]
export EDITOR=nano # or your preferred editor
crontab -e
[code]

You should then be taken into an editor, which may be blank or may already have some lines defined. Add this line to the end, exactly as is:

Code:
*/5 * * * * /home/cbjhawks/autolame/autolame.sh
The /5 means to run every five minutes; you can safely set this to any number from 1 to 30.

Save the file and wait five minutes.


Alternatively, you could just run /home/cbjhawks/autolame/autolame.sh every time you drop a file into that directory.

Hope that helps,

— Robert J Lee.
 
Old 03-23-2009, 07:49 AM   #4
cbjhawks
Member
 
Registered: Oct 2001
Location: Overland Park, KS
Distribution: Kubuntu 22.04
Posts: 375

Original Poster
Rep: Reputation: 30
rjlee....this is what I was wondering...

I have edited this post...so ignore the subject line...my problem was that the properties for the script did not have the "execute" permission enable...once I did that the wav in the in directory started to encode to mp3...see below

cbjhawks@linux-801d:~/autolame> ./autolame-1.17.sh

autolame [03/23/09 08:08:07] : autolame-1.17.sh $Revision: 1.17 $
autolame [03/23/09 08:08:07] : checking for files
autolame [03/23/09 08:08:07] : <./Allan Jackson_Where were you> start
autolame [03/23/09 08:09:10] : <./Allan Jackson_Where were you> finished
autolame [03/23/09 08:09:10] : checking for files
autolame [03/23/09 08:09:10] : no more files
cbjhawks@linux-801d:~/autolame>

Awesome...thanks for your help/ideas!!!

Last edited by cbjhawks; 03-23-2009 at 08:02 AM.
 
  


Reply



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
Can I find out when and for how long a user was logged on? davidstvz Linux - Newbie 2 02-27-2009 12:28 PM
Hi, from a long time Linux user! jamesraykenney LinuxQuestions.org Member Intro 1 12-01-2008 04:03 AM
New Linux user is scared. (long) deiz92 LinuxQuestions.org Member Intro 5 08-27-2006 04:43 AM
Hello from long time Linux user kordump LinuxQuestions.org Member Intro 1 08-10-2006 12:23 PM
Can't long into linux as a normal user, help! m0rt3r Linux - Software 13 07-06-2006 09:23 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 06:39 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