Sponsored Content
Top Forums Shell Programming and Scripting The Start Of A Simple Audio Scope Shell Script... Post 302872807 by wisecracker on Sunday 10th of November 2013 06:48:52 AM
Old 11-10-2013
Major update this time guys and gals.

Version now set at 0.20.00.

Frequency Counter added for the symmetrical waveforms sine, square, triangle, (and maybe sawtooth).
This is for the future addition of the DC component and measures from 50Hz to 3500Hz to within 0.1% accuracy.
In DEMO mode this will always read 500Hz as that is the file manually generated for the task.
Many thanks to "agama" some time ago for his input using an array to speed up the Freq Counter time.
Worked an absolute treat...

Code now added for the creation of running files ready for the vertical calibration.

Note, that the vertical amplifier and calbrator are built and the circuit for the calibrator is adeed to the
end of the script.

The Windows version of the vertical calibrator SW works as a genuine file under Windows but as this is generated
on the fly it has NOT been transfered and tested yet. Feedback would be most welcome on this one. It should give
a 1KHz tone for around 8 seconds ONLY and has to be rerun ATM...

Enjoy this latest update...

Bazza...

Last edited by wisecracker; 12-30-2013 at 06:34 AM.. Reason: Code section now removed.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

problem with shell variable's scope

Hi, I am stuck while developing a shell sub-routine which checks the log file for "success" or "failure". The subroutine reads the log file and checks for key word "success", if found it set the variable (found=1). It returns success or failure based on this variable. My problem is, I can... (2 Replies)
Discussion started by: cjjoy
2 Replies

2. Shell Programming and Scripting

simple shell - how to get a parameter typed in a shell script

Hi, I am new to unix and using linux 7.2. I would like to create a script that would make it easyer for me to run my java programms. At the moment I have to type java myJavaprogram I am trying to write a script that will allow me to type something like this "myscript myJavaprogram" or maybe... (4 Replies)
Discussion started by: cmitulescu
4 Replies

3. Shell Programming and Scripting

scope of a Variable inside shell script

hi all, i'm using the following script, Status=1 Function_do () { while read line; do if ; then #echo $line if ; then Status=0 echo " LINKINK ERROR " fi fi done < ldd.log } Function_do (4 Replies)
Discussion started by: vij_krr
4 Replies

4. Shell Programming and Scripting

Help with stop/start Shell Script.

Hi All, I would like to develop a shell script for stop & start an application server (1-4) on Solaris box. Here are the user requirements for this task. 1. User will input the option which server they wish to stop. 2. Will clear cache files from specific location. 3. ... (1 Reply)
Discussion started by: venga
1 Replies

5. What is on Your Mind?

Scope of Shell Programming and scripting

Hi all, I want to know what is the scope and job status of shell Programming and scripting. Does it have any attractive jobs? (2 Replies)
Discussion started by: malikshahid85
2 Replies

6. Shell Programming and Scripting

The scope of the shell/perl script is to read the input text file. Validate the expiry date of each

The scope of the shell/perl script is to read the input text file. Validate the expiry date of each certificate and send the mail to the user. The user takes action to add the new certificate to the storage file and user owns the responsibility to update the input text file with the new certificate... (5 Replies)
Discussion started by: casmo
5 Replies

7. UNIX for Dummies Questions & Answers

unable to start shell script

Hi, Pleasse could someone advise why i'm getting this error below - No such file or directory dev6:$ ls -ltr ReleaseManagement.sh -rwxr-xr-x 1 dev fix 4830 Aug 22 11:13 ReleaseManagement.sh dev6:$ ./ReleaseManagement.sh : No such file or directory dev6:$ thank you (2 Replies)
Discussion started by: venhart
2 Replies

8. OS X (Apple)

Python script to do simple audio capture...

This site is the first to get this snippet. It will capture an audio recording of any time length within the limits of OSX's QuickTime Player's capablility... A shell script derivative of this will be used as a further capture for CygWin's AudioScope.sh. Thoroughly read ALL the comments in... (0 Replies)
Discussion started by: wisecracker
0 Replies

9. Shell Programming and Scripting

Generate 10000 unique audio file of 2MB each using shell script.

Hi, I want 10000+ unique Audio file of approx 2MB each. How can i generate numerous audio files using shell script. Any tool, command or suggestions are welcome. If i give one audio seed file then can we create numerous unique files with same seed file? Any help is highly appreciable.... (11 Replies)
Discussion started by: sushil.kumar
11 Replies

10. OS X (Apple)

A simple variable frequency sinewave audio generator.

Hi all... Well I have not been inactive but working out how to make OSX 10.14.x command line audio player have a variable sample rate. This is a back door as afplay does not have a sample rate flag unlike aplay for ALSA, in Linux flavours. This is a DEMO only but a derivative of it will... (2 Replies)
Discussion started by: wisecracker
2 Replies
swgen(1)							Linux System Manual							  swgen(1)

NAME
swgen - a simple swept frequency signal generator SYNOPSIS
swgen [-2] [-s samples] [-8/-16|-b 8/16] [sweepwaveform] sweepfreq [sweptwaveform] minfreq maxfreq swgen [-2] [-s samples] [-8/-16|-b 8/16] [sweepwaveform] sweepfreq [sweptwaveform] centrefreq percent% waveform, either sweep or swept, is sine, cosine, square, triangle, sawtooth, noise for full list of options see below. DESCRIPTION
swgen generates a swept frequency waveform on the LINUX /dev/dsp device. The swept and sweep waveform can be separately specified, as can the sweep frequency range and the sweeping frequency. Sweep frequency range can be specified either by giving the minimum (start) and max- imum (end) frequency in Hertz; or by giving the centre frequency and the percentage frequency variation below and above. The percentage is given as an integer value from 0 to 100. The default sweep waveform is a sawtooth (ramp), and the default swept waveform is a sine. If the soundcard can do 16 bit samples, swgen will do 16 bit by default. 8 or 16 bit samples can be generated, in mono or stereo. In stereo, one channel carries the swept frequency signal, while the second chan- nel carries the sweeping signal. This can be useful fed to the X input of an oscilloscope when displaying frequency response curves etc. The samples can be written in raw or WAV format to files instead of to the sound device. The frequency is specified as an integer number of Hertz. Fractional Hertz frequencies are not supported. Of course, only frequencies less than half the samplerate (number of samples/sec) can be generated. The waveforms that can be generated are: sine A standard sine wave cosine a sine wave with a 90 degree phase shift square a standard square wave with a 50% mark space ratio sawtooth a ramp waveform with 'infinitely' fast flyback (:-) An ideal oscilloscope timebase signal. triangle shaped like equally spaced teeth on a saw (:-) noise This is weak. All it consists of is one second of pseudo-randomly generated samples, played repeatedly. I'd love to do proper white/pink noise, but I don't know enough, and I don't think the structure of the program is conducive to accurate noise generation. swgen creates one second's worth of generated output in a buffer and plays the buffer repeatedly, until it is terminated. A lot of thought has gone into the algorithms for generating the waveforms. I believe the sin/cos wave to be very pure (modulo your sound card :-), but I don't have access to a THD meter to measure it. For best signal accuracy NEVER use the gain factor option (-A). The genera- tor will then make the wave's peak value fit the maximum digital values allowed. Use a mixer program to control the output volume, or an external attenuator. The gain factor option can be useful for simulating a signal that has been subject to clipping. Specify a gain of > 100%. In fact a trape- zoid signal can be made by generating a clipped triangular wave. The greater the gain, the closer the signal approaches a square wave (the rise and fall times decrease). Defaults output to /dev/dsp, 22050 samples/sec, mono, 16 bit samples if possible, else 8 bit. OPTIONS
-h display usage and help info -v be verbose -f,-a force overwrite/append of/to file. -C file use "file" as the local configuration file (see below). -o file write digital sample to file ('-' is stdout) -w file as '-o' but written as a WAVE format file. -a (append) is not valid with this option. -s samples generate with samplerate of samples/sec -8/-16 or -b 8|16 force 8 bit or 16 bit mode. -1,-2 mono (def), or special stereo mode (see above). -A n scale samples by n/100, def. n is 100 (i.e. percentage of full scale output) -t N|Nm generate output for either N secs or Nm millisecs only. -x10 or -x100 Scale frequencies down by a factor of 10 or 100. This allows fractional Hz values to be generated. See EXAMPLES below for its use. It is a Kludge. EXAMPLES
swgen -v 2 100 1000 sweep a sin wave from 100Hz to 1000Hz using a sawtooth wave twice a second, at 22050 samples/sec, 16bit samples on 16 bit card, 8 bit samples on an 8 bit card. swgen -v -s 44100 -w sweep.wav 2 100 1000 as above but at a samplerate or 44100/sec and save one second of samples as a WAVE file in sweep.wav swgen -v -2 squ 10 1000 20% generate a sine wave switched by a 10Hz squarewave between 800Hz and 1200Hz. The swept signal is on one channel and the 10Hz square wave is on the second channel. swgen -v -x10 5 4400 4500 generate a swept sine wave from 440Hz (4400/10) to 450Hz (4500/10), being swept at a frequency of 0.5Hz (5/10). Yes it's a royal pain remembering to scale all freqs. up by a factor of 10, but I needed it in a hurry and didn't have time to do it better. CONFIGURATION FILES
Three possible configuration files can be used: a LOCAL config file (usually in current directory), a HOME config file in user's $HOME directory and a GLOBAL config file. All the siggen suite of programs are compiled with the names of the config files built in. By default the configuration files are: ./.siggen.conf is the LOCAL config file. $HOME/.siggen.conf is the HOME config file. /etc/siggen.conf is the GLOBAL config file. swgen -h will indicate which config files will be searched for. The config files do not have to exist. If they exist and are readable by the program they are used, otherwise they are simply ignored. The config files are always searched for configuration values in the order LOCAL, HOME, GLOBAL. This allows a scheme where the sysadmin sets up default config values in the GLOBAL config file, but allows a user to set some or all different values in their own HOME config file, and to set yet more specific values when run from a particular directory. If no configuration files exist, the program provides builtin default values, and most of these values can be set by appropriate command line switches and flags. See siggen.conf(5) for details of the configuration files. swgen looks for configuration values CHANNELS, DACFILE, SAMPLERATE, SAMPLESIZE, VERBOSE. CHANNELS sets either mono or stereo mode like the '-1|-2' options. DACFILE allows the name of the DAC/DSP/PCM device to be changed from /dev/dsp SAMPLERATE sets the number of samples/sec for the DAC device SAMPLESIZE sets whether 8 or 16 bit samples to be generated VERBOSE sets whether or not to run in verbose mode. SEE ALSO
siggen.conf(5) BUGS
COPYING
Copyright 1995-2008 Jim Jackson The software described by this manual is covered by the GNU General Public License, Version 2, June 1991, issued by : Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distribute modified versions of this manual under the conditions for verbatim copying, provided that the entire resulting derived work is distributed under the terms of a permission notice identical to this one. Permission is granted to copy and distribute translations of this manual into another language, under the above conditions for modified versions, except that this permission notice may be included in translation instead of in the original English. AUTHOR
Jim Jackson Email: jj@franjam.org.uk Release 2.3 20 Feb 1998 swgen(1)
All times are GMT -4. The time now is 07:01 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy