Use copyTo to copy streams

This commit is contained in:
David Kaspar 2024-10-09 00:15:19 +02:00
parent cdc8850894
commit af28e6d466

View File

@ -49,12 +49,7 @@ object MediaCompressorFileUtils {
input: InputStream,
output: OutputStream,
) {
val buffer = ByteArray(1024 * 50)
var read = input.read(buffer)
while (read != -1) {
output.write(buffer, 0, read)
read = input.read(buffer)
}
input.copyTo(output, bufferSize = 1024 * 50)
}
private fun splitFileName(fileName: String): Pair<String, String> {