Skip to content

Commit

Permalink
Early 2
Browse files Browse the repository at this point in the history
  • Loading branch information
kawashirov committed Sep 30, 2022
1 parent f4f7c9a commit 310989a
Show file tree
Hide file tree
Showing 4 changed files with 484 additions and 116 deletions.
3 changes: 3 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .idea/vrc2webp.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

44 changes: 44 additions & 0 deletions assets/default.yaml
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
Loading

0 comments on commit 310989a

Please sign in to comment.