trait AiffAudioWriter[ByteSeq] extends AudioClipWriter
Audio writer for AIFF files.
https://mmsp.ece.mcgill.ca/Documents/AudioFormats/AIFF/Docs/AIFF-1.3.pdf
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- AiffAudioWriter
- AudioClipWriter
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val chunkSize: Int
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- val sampleRate: Int
- def storeClip(clip: AudioClip, os: OutputStream): Either[String, Unit]
Stores an audio clip to an OutputStream.
Stores an audio clip to an OutputStream.
- clip
AudioClip to store
- os
OutputStream where to store the data
- returns
Either unit or an error string
- Definition Classes
- AiffAudioWriter → AudioClipWriter
- def storeClip(clip: AudioClip, resource: Resource): Try[Either[String, Unit]]
Stores an audio clip to a Resource.
Stores an audio clip to a Resource.
- clip
AudioCLip to store
- resource
Resource where to store the data
- returns
Either unit or an error string, inside a Try capturing the IO exceptions
- Definition Classes
- AudioClipWriter
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toByteArray(clip: AudioClip): Either[String, Array[Byte]]
Returns the audio clip data as a byte array.
Returns the audio clip data as a byte array.
- clip
AudioClip to convert
- returns
Either an array with the clip data or an error string
- Definition Classes
- AudioClipWriter
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])