Skip to content

Commit

Permalink
AudioMoth Filter Playground -> AudioMoth Play
Browse files Browse the repository at this point in the history
  • Loading branch information
pcprince committed Sep 15, 2023
1 parent a490ac4 commit a9831e9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "audiomoth-filter-playground",
"name": "audiomoth-play",
"version": "1.0.0",
"description": "A web-based analysis tool for experimenting with filter and amplitude threshold settings available in the AudioMoth Configuration App.",
"license": "MIT",
"homepage": "https://playground.openacousticdevices.info/",
"homepage": "https://play.openacousticdevices.info/",
"author": "openacousticdevices.info",
"repository": {
"type": "git",
"url": "https://github.com/OpenAcousticDevices/AudioMoth-Filter-Playground.git"
"url": "https://github.com/OpenAcousticDevices/AudioMoth-Play.git"
},
"devDependencies": {
"eslint": "^7.28.0",
Expand Down
2 changes: 1 addition & 1 deletion scripts/exportAudio.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function createAudioArray (samples, unthresholdedSamples, start, length, sampleR

const numberOfSamples = playbackBufferLength * powMultiplier;

const header = createAudioMothHeader(numberOfSamples, acceptedSampleRate, 'Audio clip exported from the AudioMoth Filter Playground.', 'AudioMoth Filter Playground');
const header = createAudioMothHeader(numberOfSamples, acceptedSampleRate, 'Audio clip exported from AudioMoth Play.', 'AudioMoth Play');

const headerBuffer = new ArrayBuffer(header.size);

Expand Down
2 changes: 1 addition & 1 deletion scripts/sliderControl.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ function enableSlider (slider, div) {

}

// Check if code is running on Config App or Filter Playground as importing/exporting works differently in Electron
// Check if code is running on Config App or Play as importing/exporting works differently in Electron
if (window && window.process && window.process.type) {

exports.enableSlider = enableSlider;
Expand Down
4 changes: 2 additions & 2 deletions scripts/uiFiltering.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
* November 2019
*****************************************************************************/

// Filter Playground/Config App each have different methods of initialising Slider
// AudioMoth Play/Config App each have different methods of initialising Slider

/* global Slider */
// const Slider = require('bootstrap-slider');

// Filter Playground/Config App import functions differently
// AudioMoth Play/Config App import functions differently

/* global enableSlider, disableSlider */
// const sliderControl = require('./sliderControl.js');
Expand Down

0 comments on commit a9831e9

Please sign in to comment.