19 lines
653 B
Java
19 lines
653 B
Java
/**
|
|
* FFmpeg module for auto-subtitle
|
|
*/
|
|
module com.github.gtache.autosubtitle.ffmpeg {
|
|
requires transitive com.github.gtache.autosubtitle.core;
|
|
requires transitive dagger;
|
|
requires transitive javax.inject;
|
|
requires java.net.http;
|
|
requires org.apache.logging.log4j;
|
|
requires org.tukaani.xz;
|
|
requires org.apache.commons.compress;
|
|
|
|
exports com.github.gtache.autosubtitle.ffmpeg;
|
|
exports com.github.gtache.autosubtitle.setup.ffmpeg;
|
|
|
|
exports com.github.gtache.autosubtitle.modules.ffmpeg;
|
|
exports com.github.gtache.autosubtitle.modules.setup.ffmpeg;
|
|
exports com.github.gtache.autosubtitle.archive.ffmpeg;
|
|
} |