├── .gitignore ├── FYVideoCompressor.podspec ├── LICENSE ├── Package.swift ├── README.md ├── Sources └── FYVideoCompressor │ ├── FYVideoCompressor.swift │ ├── VideoFrameReducer.swift │ └── extensions │ ├── AVFileType+FileExtension.swift │ ├── FileManager+TempDirectory.swift │ ├── FourCharCode+ToString.swift │ └── URL+FileSize.swift └── Tests └── FYVideoCompressorTests ├── BatchCompressionTests.swift ├── FYVideoCompressorTests.swift └── TestUserDefinedPath.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/.gitignore -------------------------------------------------------------------------------- /FYVideoCompressor.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/FYVideoCompressor.podspec -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/README.md -------------------------------------------------------------------------------- /Sources/FYVideoCompressor/FYVideoCompressor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Sources/FYVideoCompressor/FYVideoCompressor.swift -------------------------------------------------------------------------------- /Sources/FYVideoCompressor/VideoFrameReducer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Sources/FYVideoCompressor/VideoFrameReducer.swift -------------------------------------------------------------------------------- /Sources/FYVideoCompressor/extensions/AVFileType+FileExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Sources/FYVideoCompressor/extensions/AVFileType+FileExtension.swift -------------------------------------------------------------------------------- /Sources/FYVideoCompressor/extensions/FileManager+TempDirectory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Sources/FYVideoCompressor/extensions/FileManager+TempDirectory.swift -------------------------------------------------------------------------------- /Sources/FYVideoCompressor/extensions/FourCharCode+ToString.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Sources/FYVideoCompressor/extensions/FourCharCode+ToString.swift -------------------------------------------------------------------------------- /Sources/FYVideoCompressor/extensions/URL+FileSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Sources/FYVideoCompressor/extensions/URL+FileSize.swift -------------------------------------------------------------------------------- /Tests/FYVideoCompressorTests/BatchCompressionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Tests/FYVideoCompressorTests/BatchCompressionTests.swift -------------------------------------------------------------------------------- /Tests/FYVideoCompressorTests/FYVideoCompressorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Tests/FYVideoCompressorTests/FYVideoCompressorTests.swift -------------------------------------------------------------------------------- /Tests/FYVideoCompressorTests/TestUserDefinedPath.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/T2Je/FYVideoCompressor/HEAD/Tests/FYVideoCompressorTests/TestUserDefinedPath.swift --------------------------------------------------------------------------------