├── .gitignore ├── README.md ├── dist └── javadoc │ ├── allclasses-frame.html │ ├── allclasses-noframe.html │ ├── constant-values.html │ ├── deprecated-list.html │ ├── ffmpegenc │ ├── Encryptor.html │ ├── ICallback.html │ ├── class-use │ │ ├── Encryptor.html │ │ └── ICallback.html │ ├── package-frame.html │ ├── package-summary.html │ ├── package-tree.html │ └── package-use.html │ ├── help-doc.html │ ├── index-files │ ├── index-1.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ └── index-5.html │ ├── index.html │ ├── overview-tree.html │ ├── package-list │ ├── script.js │ └── stylesheet.css ├── nbproject ├── build-impl.xml ├── genfiles.properties ├── private │ ├── config.properties │ ├── private.properties │ └── private.xml ├── project.properties └── project.xml ├── src └── ffmpegenc │ ├── Encryptor.java │ ├── FfmpegRunnable.java │ ├── ICallback.java │ └── package-info.java └── test └── TestMain.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/README.md -------------------------------------------------------------------------------- /dist/javadoc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/allclasses-frame.html -------------------------------------------------------------------------------- /dist/javadoc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/allclasses-noframe.html -------------------------------------------------------------------------------- /dist/javadoc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/constant-values.html -------------------------------------------------------------------------------- /dist/javadoc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/deprecated-list.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/Encryptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/Encryptor.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/ICallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/ICallback.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/class-use/Encryptor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/class-use/Encryptor.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/class-use/ICallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/class-use/ICallback.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/package-frame.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/package-summary.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/package-tree.html -------------------------------------------------------------------------------- /dist/javadoc/ffmpegenc/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/ffmpegenc/package-use.html -------------------------------------------------------------------------------- /dist/javadoc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/help-doc.html -------------------------------------------------------------------------------- /dist/javadoc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/index-files/index-1.html -------------------------------------------------------------------------------- /dist/javadoc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/index-files/index-2.html -------------------------------------------------------------------------------- /dist/javadoc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/index-files/index-3.html -------------------------------------------------------------------------------- /dist/javadoc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/index-files/index-4.html -------------------------------------------------------------------------------- /dist/javadoc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/index-files/index-5.html -------------------------------------------------------------------------------- /dist/javadoc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/index.html -------------------------------------------------------------------------------- /dist/javadoc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/overview-tree.html -------------------------------------------------------------------------------- /dist/javadoc/package-list: -------------------------------------------------------------------------------- 1 | ffmpegenc 2 | -------------------------------------------------------------------------------- /dist/javadoc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/script.js -------------------------------------------------------------------------------- /dist/javadoc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/dist/javadoc/stylesheet.css -------------------------------------------------------------------------------- /nbproject/build-impl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/nbproject/build-impl.xml -------------------------------------------------------------------------------- /nbproject/genfiles.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/nbproject/genfiles.properties -------------------------------------------------------------------------------- /nbproject/private/config.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nbproject/private/private.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/nbproject/private/private.properties -------------------------------------------------------------------------------- /nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/nbproject/private/private.xml -------------------------------------------------------------------------------- /nbproject/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/nbproject/project.properties -------------------------------------------------------------------------------- /nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/nbproject/project.xml -------------------------------------------------------------------------------- /src/ffmpegenc/Encryptor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/src/ffmpegenc/Encryptor.java -------------------------------------------------------------------------------- /src/ffmpegenc/FfmpegRunnable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/src/ffmpegenc/FfmpegRunnable.java -------------------------------------------------------------------------------- /src/ffmpegenc/ICallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/src/ffmpegenc/ICallback.java -------------------------------------------------------------------------------- /src/ffmpegenc/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * 提供用FFMPEG将文件自动进行一键HLS切片并加密的功能。 3 | */ 4 | package ffmpegenc; 5 | -------------------------------------------------------------------------------- /test/TestMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/djjsdtc/ffmpeg_hls_encryption/HEAD/test/TestMain.java --------------------------------------------------------------------------------