2023-08-03 14:52:45 +00:00
# SpiffWorkflow landing page and blog
2022-12-29 21:20:17 +00:00
To get started install Hugo. From there you can just run ```hugo serve``` and you should get the site as designed.
# Theme
We used the Fresh Theme
[![Documentation ](https://img.shields.io/badge/Documentation-red )](https://stefma.github.io/hugo-fresh)
[![Live Demo ](https://img.shields.io/badge/Live%20Demo-blue )](https://hugo-fresh.vercel.app)
2023-05-30 20:31:36 +00:00
# Deployment
This is auto-deployed through CloudFlare's pages. Please be sure that the correct version of Hugo is set in Cloud Flare's Workers & Pages / Settings / Environment Variables.
2022-12-29 21:20:17 +00:00
# Generating Animated gifs
2023-08-03 14:52:45 +00:00
I used roughly a quarter of my standard screen to record videos with OBS Studio.
2022-12-29 21:20:17 +00:00
I then converted the mp4 files to gifs with the following command:
```bash
ffmpeg -i scripts.mp4 -r 15 -vf "scale=1024:-1,split[s0][s1];[s0]palettegen[p];[s1][p]paletteuse" scripts.gif
2023-08-17 20:25:45 +00:00
adding the following will speed the video up so it is 25% as long as it was originally.
-vf "setpts=0.25*PTS;"
2022-12-29 21:20:17 +00:00
```