-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adding support for 64-bit OSes (aarch64) * Changing default codec to h264_v4l2m2m (removing h264_omx) * Splitting out compile_ffmpeg.py into its own file
- Loading branch information
1 parent
96cea21
commit 86e751a
Showing
6 changed files
with
761 additions
and
512 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,35 @@ | ||
# .pre-commit-config.yaml | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v2.5.0 | ||
rev: v4.4.0 | ||
hooks: | ||
- id: mixed-line-ending | ||
- id: trailing-whitespace | ||
- id: requirements-txt-fixer | ||
|
||
# Identify invalid files | ||
- id: check-ast | ||
- id: check-yaml | ||
- id: check-json | ||
- id: fix-encoding-pragma | ||
- id: check-byte-order-marker | ||
- id: check-toml | ||
|
||
# git checks | ||
- id: check-merge-conflict | ||
- id: check-added-large-files | ||
- id: detect-private-key | ||
- id: check-case-conflict | ||
|
||
# Python checks | ||
- id: check-docstring-first | ||
- id: debug-statements | ||
- id: requirements-txt-fixer | ||
- id: fix-encoding-pragma | ||
- id: fix-byte-order-marker | ||
|
||
# General quality checks | ||
- id: mixed-line-ending | ||
- id: trailing-whitespace | ||
args: [--markdown-linebreak-ext=md] | ||
- id: check-executables-have-shebangs | ||
- id: end-of-file-fixer | ||
- repo: https://github.com/psf/black | ||
rev: stable | ||
rev: 23.9.1 | ||
hooks: | ||
- id: black |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.