Files
ffmpeg-builder/lib
2025-10-28 17:31:46 -05:00
..
2025-10-28 17:31:46 -05:00
2025-09-13 13:42:30 -05:00
2025-10-28 17:31:46 -05:00
2025-10-24 20:46:04 -05:00
2025-10-28 17:31:46 -05:00
2025-10-28 16:14:31 -05:00
2025-09-18 08:08:50 -05:00
2025-10-28 17:31:46 -05:00

#!/usr/bin/env bash

FB_FUNC_NAMES+=('gen_readme')
FB_FUNC_DESCS['gen_readme']='generate project README.md'
gen_readme() {
	local readme="${REPO_DIR}/README.md"

	echo "
A collection of scripts for building ffmpeg and encoding content with the built ffmpeg

Tested on:
- linux x86_64/aarch64 on:
$(printf '  - %s\n' "${VALID_DOCKER_IMAGES[@]}")
- darwin aarch64

\`\`\`bash
$(COLOR=OFF print_cmds)
\`\`\`

" >"${readme}"

}