Transmuxing

transmuxing

What? the act of converting from one format (container) to another one.

Why? sometimes some devices (TVs, smartphones, console and etc) doesn’t support X but Y and sometimes newer containers provide modern required features.

How? converting a mp4 to a webm.

  1. $ ffmpeg \
  2. -i bunny_1080p_60fps.mp4 \
  3. -c copy \ # just saying to ffmpeg to skip encoding
  4. bunny_1080p_60fps.webm