1
0
mirror of https://github.com/psychopy/psychojs.git synced 2025-05-10 18:50:54 +00:00
psychojs/docs/sound_AudioClipPlayer.js.html
2022-05-23 12:31:01 +02:00

236 lines
9.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JSDoc: Source: sound/AudioClipPlayer.js</title>
<script src="scripts/prettify/prettify.js"> </script>
<script src="scripts/prettify/lang-css.js"> </script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css">
<link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css">
</head>
<body>
<div id="main">
<h1 class="page-title">Source: sound/AudioClipPlayer.js</h1>
<section>
<article>
<pre class="prettyprint source linenums"><code>/**
* AudioClip Player.
*
* @author Alain Pitiot
* @version 2021.2.0
* @copyright (c) 2017-2020 Ilixa Ltd. (http://ilixa.com) (c) 2020-2021 Open Science Tools Ltd. (https://opensciencetools.org)
* @license Distributed under the terms of the MIT License
*/
import { AudioClip } from "./AudioClip.js";
import { SoundPlayer } from "./SoundPlayer.js";
/**
* &lt;p>This class handles the playback of an audio clip, e.g. a microphone recording.&lt;/p>
*
* @name module:sound.AudioClipPlayer
* @class
* @extends SoundPlayer
* @param {Object} options
* @param {module:core.PsychoJS} options.psychoJS - the PsychoJS instance
* @param {Object} options.audioClip - the module:sound.AudioClip
* @param {number} [options.startTime= 0] - start of playback (in seconds)
* @param {number} [options.stopTime= -1] - end of playback (in seconds)
* @param {boolean} [options.stereo= true] whether or not to play the sound or track in stereo
* @param {number} [options.volume= 1.0] - volume of the sound (must be between 0 and 1.0)
* @param {number} [options.loops= 0] - how many times to repeat the track or tone after it has played *
*/
export class AudioClipPlayer extends SoundPlayer
{
constructor({
psychoJS,
audioClip,
startTime = 0,
stopTime = -1,
stereo = true,
volume = 0,
loops = 0,
} = {})
{
super(psychoJS);
this._addAttribute("audioClip", audioClip);
this._addAttribute("startTime", startTime);
this._addAttribute("stopTime", stopTime);
this._addAttribute("stereo", stereo);
this._addAttribute("loops", loops);
this._addAttribute("volume", volume);
this._currentLoopIndex = -1;
}
/**
* Determine whether this player can play the given sound.
*
* @name module:sound.AudioClipPlayer.accept
* @function
* @static
* @public
* @param {module:sound.Sound} sound - the sound object, which should be an AudioClip
* @return {Object|undefined} an instance of AudioClipPlayer if sound is an AudioClip or undefined otherwise
*/
static accept(sound)
{
if (sound.value instanceof AudioClip)
{
// build the player:
const player = new AudioClipPlayer({
psychoJS: sound.psychoJS,
audioClip: sound.value,
startTime: sound.startTime,
stopTime: sound.stopTime,
stereo: sound.stereo,
loops: sound.loops,
volume: sound.volume,
});
return player;
}
// AudioClipPlayer is not an appropriate player for the given sound:
return undefined;
}
/**
* Get the duration of the AudioClip, in seconds.
*
* @name module:sound.AudioClipPlayer#getDuration
* @function
* @public
* @return {number} the duration of the clip, in seconds
*/
getDuration()
{
return this._audioClip.getDuration();
}
/**
* Set the duration of the audio clip.
*
* @name module:sound.AudioClipPlayer#setDuration
* @function
* @public
* @param {number} duration_s - the duration of the clip in seconds
*/
setDuration(duration_s)
{
// TODO
throw {
origin: "AudioClipPlayer.setDuration",
context: "when setting the duration of the playback for audio clip player: " + this._name,
error: "not implemented yet",
};
}
/**
* Set the volume of the playback.
*
* @name module:sound.AudioClipPlayer#setVolume
* @function
* @public
* @param {number} volume - the volume of the playback (must be between 0.0 and 1.0)
* @param {boolean} [mute= false] - whether or not to mute the playback
*/
setVolume(volume, mute = false)
{
this._volume = volume;
this._audioClip.setVolume((mute) ? 0.0 : volume);
}
/**
* Set the number of loops.
*
* @name module:sound.AudioClipPlayer#setLoops
* @function
* @public
* @param {number} loops - how many times to repeat the clip after it has played once. If loops == -1, the clip will repeat indefinitely until stopped.
*/
setLoops(loops)
{
this._loops = loops;
this._currentLoopIndex = -1;
// TODO
}
/**
* Start playing the sound.
*
* @name module:sound.AudioClipPlayer#play
* @function
* @public
* @param {number} loops - how many times to repeat the track after it has played once. If loops == -1, the track will repeat indefinitely until stopped.
* @param {number} [fadeDuration = 17] - how long should the fading in last in ms
*/
play(loops, fadeDuration = 17)
{
if (typeof loops !== "undefined")
{
this.setLoops(loops);
}
// handle repeats:
if (loops > 0)
{
// TODO
}
this._audioClip.startPlayback();
}
/**
* Stop playing the sound immediately.
*
* @name module:sound.AudioClipPlayer#stop
* @function
* @public
* @param {number} [fadeDuration = 17] - how long the fading out should last, in ms
*/
stop(fadeDuration = 17)
{
this._audioClip.stopPlayback(fadeDuration);
}
}
</code></pre>
</article>
</section>
</div>
<nav>
<h2><a href="index.html">Home</a></h2><h3>Modules</h3><ul><li><a href="module-core.html">core</a></li><li><a href="module-data.html">data</a></li><li><a href="module-sound.html">sound</a></li><li><a href="module-util.html">util</a></li><li><a href="module-visual.html">visual</a></li></ul><h3>Classes</h3><ul><li><a href="FaceDetector_FaceDetector.html">FaceDetector</a></li><li><a href="module.data.MultiStairHandler.html">MultiStairHandler</a></li><li><a href="module.data.QuestHandler.html">QuestHandler</a></li><li><a href="module-core.BuilderKeyResponse.html">BuilderKeyResponse</a></li><li><a href="module-core.EventManager.html">EventManager</a></li><li><a href="module-core.GUI.html">GUI</a></li><li><a href="module-core.Keyboard.html">Keyboard</a></li><li><a href="module-core.KeyPress.html">KeyPress</a></li><li><a href="module-core.Logger.html">Logger</a></li><li><a href="module-core.MinimalStim.html">MinimalStim</a></li><li><a href="module-core.Mouse.html">Mouse</a></li><li><a href="module-core.PsychoJS.html">PsychoJS</a></li><li><a href="module-core.ServerManager.html">ServerManager</a></li><li><a href="module-core.Window.html">Window</a></li><li><a href="module-data.ExperimentHandler.html">ExperimentHandler</a></li><li><a href="module-data.MultiStairHandler.html">MultiStairHandler</a></li><li><a href="module-data.QuestHandler.html">QuestHandler</a></li><li><a href="module-data.Shelf.html">Shelf</a></li><li><a href="module-data.TrialHandler.html">TrialHandler</a></li><li><a href="module-sound.AudioClip.html">AudioClip</a></li><li><a href="module-sound.AudioClipPlayer.html">AudioClipPlayer</a></li><li><a href="module-sound.Microphone.html">Microphone</a></li><li><a href="module-sound.Sound.html">Sound</a></li><li><a href="module-sound.TonePlayer.html">TonePlayer</a></li><li><a href="module-sound.TrackPlayer.html">TrackPlayer</a></li><li><a href="module-sound.Transcriber.html">Transcriber</a></li><li><a href="module-sound.Transcript.html">Transcript</a></li><li><a href="module-util.Clock.html">Clock</a></li><li><a href="module-util.Color.html">Color</a></li><li><a href="module-util.CountdownTimer.html">CountdownTimer</a></li><li><a href="module-util.EventEmitter.html">EventEmitter</a></li><li><a href="module-util.MixinBuilder.html">MixinBuilder</a></li><li><a href="module-util.MonotonicClock.html">MonotonicClock</a></li><li><a href="module-util.PsychObject.html">PsychObject</a></li><li><a href="module-util.Scheduler.html">Scheduler</a></li><li><a href="module-visual.ButtonStim.html">ButtonStim</a></li><li><a href="module-visual.Camera.html">Camera</a></li><li><a href="module-visual.FaceDetector.html">FaceDetector</a></li><li><a href="module-visual.Form.html">Form</a></li><li><a href="module-visual.GratingStim.html">GratingStim</a></li><li><a href="module-visual.ImageStim.html">ImageStim</a></li><li><a href="module-visual.MovieStim.html">MovieStim</a></li><li><a href="module-visual.Polygon.html">Polygon</a></li><li><a href="module-visual.Rect.html">Rect</a></li><li><a href="module-visual.ShapeStim.html">ShapeStim</a></li><li><a href="module-visual.Slider.html">Slider</a></li><li><a href="module-visual.TextBox.html">TextBox</a></li><li><a href="module-visual.TextStim.html">TextStim</a></li><li><a href="module-visual.VisualStim.html">VisualStim</a></li></ul><h3>Interfaces</h3><ul><li><a href="module-sound.SoundPlayer.html">SoundPlayer</a></li></ul><h3>Mixins</h3><ul><li><a href="module-core.WindowMixin.html">WindowMixin</a></li><li><a href="module-util.ColorMixin.html">ColorMixin</a></li></ul>
</nav>
<br class="clear">
<footer>
Documentation generated by <a href="https://github.com/jsdoc/jsdoc">JSDoc 3.6.7</a> on Mon May 23 2022 12:29:28 GMT+0200 (Central European Summer Time)
</footer>
<script> prettyPrint(); </script>
<script src="scripts/linenumber.js"> </script>
</body>
</html>