Files
auto-subtitle/whisper/whisperx/src/main/java/module-info.java
2024-10-03 21:55:14 +02:00

16 lines
680 B
Java

/**
* WhisperX module for auto-subtitle
*/
module com.github.gtache.autosubtitle.whisperx {
requires transitive com.github.gtache.autosubtitle.whisper.common;
requires org.apache.logging.log4j;
exports com.github.gtache.autosubtitle.whisperx;
exports com.github.gtache.autosubtitle.setup.whisperx;
exports com.github.gtache.autosubtitle.subtitle.converter.json.whisperx;
exports com.github.gtache.autosubtitle.subtitle.extractor.whisperx;
exports com.github.gtache.autosubtitle.modules.whisperx;
exports com.github.gtache.autosubtitle.modules.setup.whisperx;
exports com.github.gtache.autosubtitle.modules.subtitle.extractor.whisperx;
}