This patch is meant to be used for creating videos of the attributor scheduling.
Usage:
- Create dot files (--attribute-seed-allow-list recommended)
- Render the dot files.
for f in *.dot do dot -Tpng "$f" -o "$f.png" done
- concatenate the images with ffmpeg.
ffmpeg -r 1 -pattern_type glob -i '*.png' -codec:v libx264 out.mp4
(TODO: Find options that don't break the aspect ratio)
Is this patch based on D83185 ? But I think those are 2 irrelevant patches, right? Maybe you should create a branch from master and apply changes to that.