ZIP method 0 stores bytes and method 8 compresses them with DEFLATE; both are ordinary interoperable ZIP entries.
JPEG, MP4 and ZIP usually have little redundancy left for DEFLATE, while text and structured data often have plenty.
CRC-32 detects accidental damage but does not authenticate the archive or make it confidential.
The full explanation
ZIP can collect many named files into one artifact with or without compressing them. Method 0 stores source bytes directly; method 8 applies DEFLATE. For already-compressed media, the container and its checksums can be useful even when the resulting ZIP is slightly larger than the loose files. Read the complete guide for the reasoning, examples and definitions behind this answer.