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__ __pycache__
/dist /dist
/.venv

View file

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

54
spcd.sh
View file

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

View file

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

File diff suppressed because it is too large Load diff