Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
AudioTools[Write] - writes audio data from an Array, Matrix, or Vector into a file
Calling Sequence
Write(fileName, audArray, format=fmtDesc)
Parameters
fileName
-
string; the pathname of the audio file to write to
audArray
the Array, Matrix, or Vector containing the audio data to write
format=fmtDesc
(optional) specification of the audio file format
Description
The Write command writes audio data from an Array, Matrix, or Vector into a file in one of the supported formats.
The audArray parameter must be a dense, rectangular, one or two dimensional Array, Matrix, or Vector with datatype=float[8].
If the option format=fmtDesc is specified, fmtDesc must correspond to one of the values in AudioTools[Formats]. Currently, the AudioTools package supports only WAVE files. If not specified, the Write command attempts to determine the format from the fileName.
Write returns the number of bytes written.
If the audArray has one dimension, the audio data is assumed to be monophonic, and is written to the file accordingly. A two-dimensional audArray is written as stereo (or more channels), according to the size of the second dimension.
The first dimension of the Array corresponds to the length, in samples, of the audio data. A single channel occupies a single column in the Array.
Samples values in the audArray are assumed to range from -1.0 to 1.0, and are scaled to the sample size when written into the file. Sample values less than -1.0 become the lowest allowed sample value. Values greater than 1.0 become the highest allowed sample value.
The attributes of the audArray provide additional information on how the data is to be written to the file.
The first attribute specifies the number of samples per second that the data in the audArray represents.
The second attribute specifies the number of bits per sample that should be used when writing to the file, by default, this is set to the number of bits per sample of the file the data was read from originally. For file formats that do not allow the number of bits per sample to be specified, this is ignored.
The third attribute specifies the sub-format to use. For file formats that have no sub-formats, this is ignored.
Write currently does not support writing any compressed formats. Only uncompressed (PCM) WAVE format is supported. If writing audio data that was originally Read in compressed (ADPCM) WAVE format, Write will save it in uncompressed format, and issue a warning.
Examples
See Also
Array, AudioTools, AudioTools[Create], AudioTools[Formats], AudioTools[Read], Matrix, Vector
Download Help Document