22 lines
377 B
Java
22 lines
377 B
Java
package com.github.gtache.autosubtitle;
|
|
|
|
import java.io.IOException;
|
|
import java.io.InputStream;
|
|
|
|
/**
|
|
* Represents an audio
|
|
*/
|
|
public interface Audio {
|
|
|
|
/**
|
|
* @return The input stream
|
|
* @throws IOException If an I/O error occurs
|
|
*/
|
|
InputStream getInputStream() throws IOException;
|
|
|
|
/**
|
|
* @return The audio info
|
|
*/
|
|
AudioInfo info();
|
|
}
|