Initial commit

This commit is contained in:
Guillaume Tâche
2024-07-27 17:45:46 +02:00
commit 75829244b9
66 changed files with 2906 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
package com.github.gtache.autosubtitle;
import java.io.IOException;
import java.io.InputStream;
/**
* Represents an audio
*/
public interface Audio {
/**
* @return The audio input stream
* @throws IOException If an I/O error occurs
*/
InputStream getInputStream() throws IOException;
/**
* @return The audio info
*/
AudioInfo info();
}