Compare commits

..

No commits in common. "8e58d45e10a331231860cd502c3951c82c58f0aa" and "72133580d0308b0c8674e5bf6468f978163c6bb1" have entirely different histories.

6 changed files with 1243 additions and 1242 deletions

3
.editorconfig Normal file
View file

@ -0,0 +1,3 @@
[*.sh]
indent_size = 4
indent_style = space

1
.gitignore vendored
View file

@ -1,2 +1,3 @@
__pycache__
/dist
/.venv

View file

@ -291,4 +291,3 @@ Handle project workflows in a unified way:
* tex
* translate to french
* try to support nix
* uv

54
spcd.sh
View file

@ -1,30 +1,30 @@
#! /usr/bin/env sh
gource \
--auto-skip-seconds 0.25 \
--date-format "%Y / %m / %d ⋅ %H : %M : %S" \
--disable-input \
--font-scale 2.5 \
--frameless \
--hide mouse,usernames \
--highlight-dirs \
--key \
--multi-sampling \
--output-framerate 60 \
--output-ppm-stream - \
--seconds-per-day 0.6 \
--stop-at-end \
--viewport "1920x1080" |
ffmpeg \
-codec:v ppm \
-format image2pipe \
-framerate 120 \
-i - \
-codec:v libx264 \
-preset veryslow \
-qp 28 \
-movflags \
+faststart \
-pix_fmt yuv420p \
-y \
spcd.mp4
--auto-skip-seconds 0.25 \
--date-format "%Y / %m / %d ⋅ %H : %M : %S" \
--disable-input \
--font-scale 2.5 \
--frameless \
--hide mouse,usernames \
--highlight-dirs \
--key \
--multi-sampling \
--output-framerate 60 \
--output-ppm-stream - \
--seconds-per-day 0.6 \
--stop-at-end \
--viewport "1920x1080" |
ffmpeg \
-codec:v ppm \
-format image2pipe \
-framerate 120 \
-i - \
-codec:v libx264 \
-preset veryslow \
-qp 28 \
-movflags \
+faststart \
-pix_fmt yuv420p \
-y \
spcd.mp4

View file

@ -76,12 +76,10 @@ def install_python_packages() -> None:
"pydoclint",
"pylint",
"pytest",
"PyYAML",
"ruff",
"Sphinx",
"sphinx",
"sphinx-rtd-theme",
"twine",
"types-PyYAML",
]
for package in packages:
log.info(package)

File diff suppressed because it is too large Load diff