1. Nostalgia for vintage vector‑graphics tools (turtle graphics)
"One of the strangest discoveries of my life was that vector graphics is a solved problem, and the solution is turtle graphics that I was taught in primary school." – torginus
2. Practical adoption of drawvg for editing tutorial videos
"I find the constant motion of someone's lips moving and eyes blinking in my peripheral vision extremely distracting... Instead of creating a separate
.vgsfile, I just use the inline syntax like this:ffmpeg -i input.webm -filter_complex "[0:v]drawvg='circle 3388 1670 400 setcolor black fill'[v2];[0:a]atempo=1.5[a2]" -map "[v2]" -map "[a2]" output.mp4" – jasode
3. Frustration with ffmpeg’s CLI syntax and desire for richer abstractions
"'I find the syntax it uses horrible: ... ffmpeg -an -ss 12 -t 3 -i bigbuckbunny.mov -vf 'crop=iw-1, drawvg=file=progress.vgs, format=yuv420p' -c:v libvpx-vp9 output.webm ...' – shevy-java