![JAR search and dependency download from the Maven repository](/logo.png)
de.sciss.audiofile.ReaderFactory.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of audiofile_3 Show documentation
Show all versions of audiofile_3 Show documentation
A library to read and write uncompressed audio files (AIFF, WAVE, etc.)
/*
* ReaderFactory.scala
* (AudioFile)
*
* Copyright (c) 2004-2021 Hanns Holger Rutz. All rights reserved.
*
* This software is published under the GNU Affero General Public License v3+
*
*
* For further information, please contact Hanns Holger Rutz at
* [email protected]
*/
package de.sciss.audiofile
import java.io.{InputStream, IOException}
trait ReaderFactory extends ReaderFactoryPlatform {
@throws(classOf[IOException])
def openRead(is: InputStream): AudioFile
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy