Convert mov to gif in Mac

Motivation
File extension of screen record in Mac is .mov (By QuickTime)
Can use ffmpeg to convert to gif to reduce file size

Install ffmpeg
brew install ffmpeg

Convert mov to gif
ffmpeg -i AM.mov output.gif

Reference

沒有留言:

張貼留言

Lessons Learned While Benchmarking vLLM with GPU

Recently, I benchmarked vLLM on a GPU to better understand how much throughput can realistically be expected in an LLM serving setup. One ...