-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f4f7c9a
commit 310989a
Showing
4 changed files
with
484 additions
and
116 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# vrc2webp default configuration file | ||
|
||
# Where to delete files: | ||
# - keep - do not delete anything, keep original file with converted. | ||
# - trash - delete to system Recycle Bin, keeps space on disk used, but possible to restore. (Default) | ||
# - unlink - delete file permanently from file system. | ||
delete-mode: trash | ||
|
||
# | ||
# CPU priorities of processes: above_normal, normal, below_normal, idle | ||
# Using lower priorities by default to not interfere with other running software. | ||
# It's not possible to set realtime or high priorities for safety/sanity reasons. | ||
own-priority-cpu: below_normal | ||
recoders-priority-cpu: idle | ||
|
||
# IO priorities of processes: normal, low, very_low | ||
# Using lower priorities by default to not interfere with other running software. | ||
# It's not possible to set high IO priority for safety/sanity reasons. | ||
own-priority-io: low | ||
recoders-priority-io: very_low | ||
|
||
# Where to watch files to recode to WEBP. | ||
watch-paths: | ||
- '%USERPROFILE%\Pictures\VRChat\2021-11 - Copy\' | ||
# - '%USERPROFILE%\Pictures\ChilloutVR\' | ||
|
||
# Look for files in sub-folders. | ||
recursive: true | ||
|
||
# Extensions of files to convert to WEBP. | ||
file-extensions: [.png, .jpg, .jpeg] | ||
|
||
# Change naming format of VRChat screenshots. Ex: | ||
# VRChat_3840x2160_2021-11-10_19-21-40.183.webp -> VRChat_2021-11-10_19-21-40.183_3840x2160.webp | ||
# Most software will sort files in correct order if date is first part of the name. | ||
vrc-swap-resolution-and-time: true | ||
|
||
# How many recode processes (cwebp.exe) to run in parallel. | ||
# if 0 or negative - will choose automatically number of logical cores on your CPU. | ||
max-parallel-recodes: -1 | ||
|
||
# | ||
# Try update modification time of files to be the same as originals. | ||
update-mtime: true |
Oops, something went wrong.