mw99 / DataCompression

Swift libcompression wrapper as an extension for the Data type (GZIP, ZLIB, LZFSE, LZMA, LZ4, deflate, RFC-1950, RFC-1951, RFC-1952)
Apache License 2.0
286 stars 57 forks source link

I want to compress video file #6

Closed junestchick closed 6 years ago

junestchick commented 6 years ago

Hi, I want to compress video file before uploading to server, should i use this? Does it work in my case? Thanks

mw99 commented 6 years ago

Hi, compressing video files is not a really good idea in general. They are already compressed as much as possible. If you are lucky you may get 1% smaller files. But they may even get bigger and it drains the battery quite a lot. Besides that, this library it not really fit for large files, because you must load the whole file into memory. That is OK when the files are small, (< ~2MB) but video files are normally bigger.

Just upload them without compression.