Packages

object Sound

Source
sound.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Sound
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. trait Render extends AnyRef
  2. case class SoundFile(file: File)(implicit render: Render) extends Product with Serializable
  3. trait SoundOutput extends AnyRef
  4. case class SoundSample[A](samples: Iterable[A], sampleDomain: Bound[A], sampleRate: Frequency, channels: Int, length: Time) extends Sound with Product with Serializable

    samples are assumed to be prescaled linear pressure mapped to PCM_SIGNED 16bit (Short) sound samples

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def apply(samples: Array[Short], sampleRate: Frequency): SoundSample[Short]
  5. def apply(samples: Array[Double], sampleRate: Frequency, sampleDomain: Bound[Double]): SoundSample[Double]

    assume mono samples from -1 to 1

  6. def apply(file: File)(implicit render: Render): SoundFile

    The java sound library is way over complex for the simple cases

  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  15. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  17. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  18. def sin(freq: Frequency, length: Time = 1.s, sampleRate: Frequency = 8.k.hz): SoundSample[Double]

    convenience constructor for sinusoid samples

  19. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  20. def toMP3(src: File)(implicit ec: drx.ExecutionContext): drx.Future[File]

    use a ffmpeg (if on the path) scenes to make an mp3 file

  21. def toString(): String
    Definition Classes
    AnyRef → Any
  22. def toWAV(src: File)(implicit ec: drx.ExecutionContext): drx.Future[File]

    use a ffmpeg (if on the path) scenes to make an wav file

  23. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  24. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  25. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  26. implicit object RenderJVM extends Render

Inherited from AnyRef

Inherited from Any

Ungrouped