Open41

Aviutlのパッケージマネージャの新星"butler"が良さそうなのでリポジトリを増やす

calloc134calloc134

https://github.com/Per-Terra/butler

Aviutlのパッケージマネージャの新星 butler

  • CLIで動作しaptのように管理できる
  • .butlerディレクトリ以下を共有することで他環境でも再現できる
  • シンボリックリンクで管理しておりスッキリする
    • マニフェストの設定次第でコピー形式にもできる模様

と、かなり技術革新なパッケージマネージャが来たなという印象
・・・なんだけど、開発者の方いわく「以後のメンテはあまり考えていない」方針のようです

そのため、リポジトリをフォークして勝手に便利なパッケージを追加していこうかなとおもっている

大抵の使い方はdeepwikiを使えばわかる
https://deepwiki.com/Per-Terra/butler
https://deepwiki.com/Per-Terra/butler-pkgs

calloc134calloc134

butler-pkgsリポジトリに
tools/createManifest.ps1が存在しており、このシェルスクリプトを使うことで
マニフェストの作成を八割ほど自動化できる模様。
実際のイメージはこんな感じ。
sigma_axis氏のTrackBoundary_Sを参考に

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://github.com/sigma-axis/aviutl_script_TrackBoundary_S/releases/download/v1.24/aviutl_script_TrackBoundary_S-v1.24.zip" `
  -Identifier "TrackBoundary-S" `
  -DisplayName "TrackBoundary_S AviUtl Script" `
  -Version "1.24" `
  -ReleaseDate "2024-08-04" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.10)" `
  -Depends "exedit (>= 0.92)" `
  -Recommends "LuaJIT" `
  -Developer "sigma-axis" `
  -Description "塗りつぶし2種 / 連結成分切り抜き / 穴埋めなどができる AviUtl アニメーション効果スクリプト 8 個セット" `
  -Website "https://github.com/sigma-axis/aviutl_script_TrackBoundary_S" `
  -Force

しかしこのまま実行すると、Dependsに複数の値が登録できないエラーとなる。
これはバグ?


WARNING: フィールド 'Depends' の値が正しくありません: aviutl (>= 1.10),exedit (>= 0.92),patch.aul
WARNING: 次の正規表現に一致する必要があります: ^([0-9A-Za-z]+(?:[+\-.][0-9A-Za-z]+)*)(?: *\( *(<<|<=|=|>=|>>) *([0-9A-Za-z]+(?:[+\-.][0-9A-Za-z]+)*) *\))?$

Dependsの値はとりあえずなくして、吐き出されたマニフェストに後からDependsを足すのが良さそう

calloc134calloc134

吐き出されるYAMLは以下の通り

# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: TrackBoundary-S
DisplayName: TrackBoundary_S AviUtl Script
Version: "1.24"
ReleaseDate: 2024-08-04
Section: Script
Architecture: x64
Recommends:
- LuaJIT
InstalledSize: 74256
Developer:
- sigma-axis
Description: 塗りつぶし2種 / 連結成分切り抜き / 穴埋めなどができる AviUtl アニメーション効果スクリプト 8 個セット
Website:
- https://github.com/sigma-axis/aviutl_script_TrackBoundary_S
Files:
- SourceUrl: https://github.com/sigma-axis/aviutl_script_TrackBoundary_S/releases/download/v1.24/aviutl_script_TrackBoundary_S-v1.24.zip
  SHA256: 74787f0a97a25a55b6aad11c1e910b61de8c1fa5684d9dcc2f391e2c12316f2c
  Files:
  - Path: '@TrackBoundary_S.anm'
    SHA256: 288a1fe84b51e184c1ef960bf0ac9d4f3798dd40e67b17a0ad4d2e2c8a16258e
    Install:
      TargetPath: script/@TrackBoundary_S.anm
  - Path: LICENSE
    SHA256: 96918c717395063f07baf627af6b7ddbc31e672f887fb813380dd8176c74d057
  - Path: README.md
    SHA256: 2b76256245647d56067ef21c5547d15680d07dc60c1b388223a5097d195e62ab
  - Path: TrackBoundary_S.lua
    SHA256: 430e0d825f572a6e5d0ddc783262363775c89ebe61bfc0fd391b5c3b96338db0
    Install:
      TargetPath: script/TrackBoundary_S.lua
ManifestVersion: 0.3.0
calloc134calloc134

Dependsが足りていないので手動で追加する
完成形

Identifier: TrackBoundary-S
DisplayName: TrackBoundary_S
Version: "1.24"
ReleaseDate: 2024-08-04
Section: Script
Architecture: x64
Depends:
  - aviutl (>= 1.10)
  - exedit (= 0.92)
Recommends:
  - LuaJIT
InstalledSize: 74256
Developer:
  - sigma-axis
Description: 塗りつぶし2種 / 連結成分切り抜き / 穴埋めなどができる AviUtl アニメーション効果スクリプト 8 個セット
Website:
  - https://github.com/sigma-axis/aviutl_script_TrackBoundary_S
Files:
  - SourceUrl: https://github.com/sigma-axis/aviutl_script_TrackBoundary_S/releases/download/v1.24/aviutl_script_TrackBoundary_S-v1.24.zip
    SHA256: 74787f0a97a25a55b6aad11c1e910b61de8c1fa5684d9dcc2f391e2c12316f2c
    Files:
      - Path: "@TrackBoundary_S.anm"
        SHA256: 288a1fe84b51e184c1ef960bf0ac9d4f3798dd40e67b17a0ad4d2e2c8a16258e
        Install:
          TargetPath: script/@TrackBoundary_S.anm
      - Path: LICENSE
        SHA256: 96918c717395063f07baf627af6b7ddbc31e672f887fb813380dd8176c74d057
      - Path: README.md
        SHA256: 2b76256245647d56067ef21c5547d15680d07dc60c1b388223a5097d195e62ab
      - Path: TrackBoundary_S.lua
        SHA256: 430e0d825f572a6e5d0ddc783262363775c89ebe61bfc0fd391b5c3b96338db0
        Install:
          TargetPath: script/TrackBoundary_S.lua
ManifestVersion: 0.3.0
calloc134calloc134

追加したいパッケージ

calloc134calloc134

その他必要かなとおもったもの

calloc134calloc134

GLShader導入

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl    "https://github.com/karoterra/aviutl-GLShaderKit/releases/download/v0.5.0/aviutl_GLShaderKit_v0.5.0.zip" `
  -Identifier   "GLShaderKit" `
  -DisplayName  "GLShaderKit AviUtl Plugin" `
  -Version      "0.5.0" `
  -ReleaseDate  "2025-05-06" `
  -Section      "Plugin" `
  -Architecture "x86" `
  -Depends      "aviutl (>= 1.10)" `
  -Developer    "karoterra" `
  -Description  "AviUtl 拡張編集スクリプトで GLSL を使用するための DLL" `
  -Website      "https://github.com/karoterra/aviutl-GLShaderKit" `
  -Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: GLShaderKit
DisplayName: GLShaderKit AviUtl Plugin
Version: 0.5.0
ReleaseDate: 2025-05-06
Section: Plugin/Other
Architecture: x86
Depends:
- aviutl (>= 1.10)
InstalledSize: 148963
Developer:
- karoterra
Description: AviUtl 拡張編集スクリプトで GLSL を使用するための DLL
Website:
- https://github.com/karoterra/aviutl-GLShaderKit
Files:
- SourceUrl: https://github.com/karoterra/aviutl-GLShaderKit/releases/download/v0.5.0/aviutl_GLShaderKit_v0.5.0.zip
  SHA256: f6b1592693aaf86e5071962f597786317c6dc1ab171155ea6feb7c4f14a23636
  Files:
  - Path: GLShaderKit_def.lua
    SHA256: d75bff519919d250e2bb27873062919258abb1a1b8de4915d56958c22ef5c229
    Install:
      TargetPath: script/GLShaderKit_def.lua
  - Path: GLShaderKit.dll
    SHA256: 1521882b050c0229649ab28ab6a715bfd09472058635d95eaeecd5d772098993
    Install:
      TargetPath: plugins/GLShaderKit.dll
  - Path: GLShaderKit.ini
    SHA256: 5d5da53828255fa17107c4b4e09945318a2bf8326d9ecfe8ec067cb7a5300d67
    Install:
      TargetPath: plugins/GLShaderKit.ini
      ConfFile: true
  - Path: LICENSE
    SHA256: 0a0c62a55e3f739d0c43e36dffb314f013f180b7e23614450382b5b015910d8e
  - Path: README.md
    SHA256: 3ba250a9679c0336eaf8efdc03cf0497ed2ed96724b42af4c5dd5a9caba20c76
ManifestVersion: 0.3.0

calloc134calloc134

https://github.com/sigma-axis/aviutl_script_RadRotDirBlur_S

導入

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://github.com/sigma-axis/aviutl_script_RadRotDirBlur_S/releases/download/v1.10/aviutl_script_RadRotDirBlur_S-v1.10.zip" `
  -Identifier "RadRotDirBlur-S" `
  -DisplayName "RadRotDirBlur_S" `
  -Version "1.10" `
  -ReleaseDate "2025-04-15" `
  -Section "Script" `
  -Architecture "x64" `
  -Suggests "patch.aul" `
  -Developer "sigma-axis" `
  -Description "放射ブラー・回転ブラー・方向ブラーを組み合わせた複合ブラー効果を適用する AviUtl スクリプト" `
  -Website "https://github.com/sigma-axis/aviutl_script_RadRotDirBlur_S" `
  -Force

calloc134calloc134

RadRotDirBlur-S

# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: RadRotDirBlur-S
DisplayName: RadRotDirBlur_S
Version: "1.10"
ReleaseDate: 2025-04-15
Section: Script
Architecture: x64
Suggests:
- patch.aul
InstalledSize: 33885
Developer:
- sigma-axis
Description: 放射ブラー・回転ブラー・方向ブラーを組み合わせた複合ブラー効果を適用する AviUtl スクリプト
Website:
- https://github.com/sigma-axis/aviutl_script_RadRotDirBlur_S
Files:
- SourceUrl: https://github.com/sigma-axis/aviutl_script_RadRotDirBlur_S/releases/download/v1.10/aviutl_script_RadRotDirBlur_S-v1.10.zip
  SHA256: defeb7b1ae3db09b3924a65549b6f1e63082630ef3d1e0f19a289062a82b14af
  Files:
  - Path: LICENSE
    SHA256: 0fbe9aa8a0045e5f6196ed404ffd524845dab3df9b5fddde255d5ce884a79439
  - Path: RadRotDirBlur_S.anm
    SHA256: 6fbf6ea3223fda40d0d622dc6742d2f12a2dd3871f2e9a955a616afa37c92867
    Install:
      TargetPath: script/RadRotDirBlur_S.anm
  - Path: RadRotDirBlur_S.frag
    SHA256: 4eeef71ba0d67c83f4b6f69dc2937a926d2f9ffc0a0ed09126d413c3087decfc
  - Path: RadRotDirBlur_S.lua
    SHA256: e7f7bf4e58143bed161b63b8fe8737f60f1528e46186a5bea0c162d8723725dc
    Install:
      TargetPath: script/RadRotDirBlur_S.lua
  - Path: README.md
    SHA256: ff36cdba60f62d14e5f55dabe986a489a8a2dd58af973f4e85103ce80bc6f0dd
ManifestVersion: 0.3.0
calloc134calloc134

Mr Ojii RotBlur_M

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://github.com/Mr-Ojii/AviUtl-RotBlur_M-Script/releases/download/r16/RotBlur_M.zip" `
  -Identifier "RotBlur-M" `
  -DisplayName "RotBlur_M AviUtl Script" `
  -Version "r16" `
  -ReleaseDate "2025-04-01" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.10)" `
  -Depends "exedit (>= 0.92)" `
  -Depends "GLShaderKit (>= 0.4.0)" `
  -Recommends "LuaJIT" `
  -Developer "Mr-Ojii" `
  -Description "AviUtl拡張編集用、GPUを使用した高速回転ブラースクリプト" `
  -Website "https://github.com/Mr-Ojii/AviUtl-RotBlur_M-Script" `
  -Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: RotBlur-M
DisplayName: RotBlur_M AviUtl Script
Version: r16
ReleaseDate: 2025-04-01
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.10)
Recommends:
- LuaJIT
InstalledSize: 7825
Developer:
- Mr-Ojii
Description: AviUtl拡張編集用、GPUを使用した高速回転ブラースクリプト
Website:
- https://github.com/Mr-Ojii/AviUtl-RotBlur_M-Script
Files:
- SourceUrl: https://github.com/Mr-Ojii/AviUtl-RotBlur_M-Script/releases/download/r16/RotBlur_M.zip
  SHA256: 5b9c69d1b946e32f56ba9e5db01cd0043a27caec27ca763aea337ac2cb208ac3
  Files:
  - Path: LICENSE.txt
    SHA256: 93d88a7327676f3abb8293024ff91d8dc17fa9f8372c4d05f4ed3d33c8b30009
  - Path: Readme.md
    SHA256: 2a5b38c09f67e497bfcdde9d092eefb0e678c0c9e5fcf2149fc4146e572f4260
  - Path: RotBlur_M.anm
    SHA256: ee328e4640b4b2509f667b0e739ce0b39c2a9587fccbede51bc69b05b02533a7
    Install:
      TargetPath: script/RotBlur_M.anm
  - Path: RotBlur_M.frag
    SHA256: a05059799cb2379a4f040712c7ea2de470cd9818f2ead714a9bcb07fc915ab1e
  - Path: RotBlur_M.lua
    SHA256: 951839f85f1ceef661634de6875c61f51f77952a37029043418ea5f7c9a3b346
    Install:
      TargetPath: script/RotBlur_M.lua
  - Path: Licenses/GLShaderKit.txt
    SHA256: 0a0c62a55e3f739d0c43e36dffb314f013f180b7e23614450382b5b015910d8e
ManifestVersion: 0.3.0

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://github.com/Mr-Ojii/AviUtl-RadBlur_M-Script/releases/download/r2/RadBlur_M.zip" `
  -Identifier "RadBlur-M" `
  -DisplayName "RadBlur_M AviUtl Script" `
  -Version "r2" `
  -ReleaseDate "2025-04-13" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.10)" `
  -Depends "exedit (>= 0.92)" `
  -Depends "GLShaderKit (>= 0.4.0)" `
  -Developer "Mr-Ojii" `
  -Description "AviUtl拡張編集用、GPUを使用した高速・高精度放射ブラースクリプト" `
  -Website "https://github.com/Mr-Ojii/AviUtl-RadBlur_M-Script" `
  -Force

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://github.com/Mr-Ojii/AviUtl-DirBlur_M-Script/releases/download/r2/DirBlur_M.zip" `
  -Identifier "DirBlur-M" `
  -DisplayName "DirBlur_M AviUtl Script" `
  -Version "r2" `
  -ReleaseDate "2025-04-01" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.10)" `
  -Depends "exedit (>= 0.92)" `
  -Depends "GLShaderKit (>= 0.4.0)" `
  -Developer "Mr-Ojii" `
  -Description "AviUtl拡張編集用、GPUを使用した高速・高精度方向ブラースクリプト" `
  -Website "https://github.com/Mr-Ojii/AviUtl-DirBlur_M-Script" `
  -Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: RadBlur-M
DisplayName: RadBlur_M AviUtl Script
Version: r2
ReleaseDate: 2025-04-13
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.10)
InstalledSize: 10247
Developer:
- Mr-Ojii
Description: AviUtl拡張編集用、GPUを使用した高速・高精度放射ブラースクリプト
Website:
- https://github.com/Mr-Ojii/AviUtl-RadBlur_M-Script
Files:
- SourceUrl: https://github.com/Mr-Ojii/AviUtl-RadBlur_M-Script/releases/download/r2/RadBlur_M.zip
  SHA256: f6bfb2f4ccbd8f79b481f7db963b19dc8fef1e4270a4ef42ae0894c09cdde556
  Files:
  - Path: LICENSE.txt
    SHA256: 93d88a7327676f3abb8293024ff91d8dc17fa9f8372c4d05f4ed3d33c8b30009
  - Path: RadBlur_M.anm
    SHA256: fff9c3b2fd6ef8871503aaa1cd6d50a57e51ad1db9cea30664920a6c1bb6cb88
    Install:
      TargetPath: script/RadBlur_M.anm
  - Path: RadBlur_M.frag
    SHA256: 294fba7500dde0b74ef520d7d67c70f13e2de4c7056cb08eede20f1407a942a7
  - Path: RadBlur_M.lua
    SHA256: 7e8eb5cc243732e10e74b40fb6e8691039d4504827e556bfd46000642c8cdb9c
    Install:
      TargetPath: script/RadBlur_M.lua
  - Path: Readme.md
    SHA256: 372747c4b59b140646839b776c4537d916921edd635745585294d2851b5e2f4a
  - Path: Licenses/GLShaderKit.txt
    SHA256: 0a0c62a55e3f739d0c43e36dffb314f013f180b7e23614450382b5b015910d8e
ManifestVersion: 0.3.0

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: DirBlur-M
DisplayName: DirBlur_M AviUtl Script
Version: r2
ReleaseDate: 2025-04-01
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.10)
InstalledSize: 7735
Developer:
- Mr-Ojii
Description: AviUtl拡張編集用、GPUを使用した高速・高精度方向ブラースクリプト
Website:
- https://github.com/Mr-Ojii/AviUtl-DirBlur_M-Script
Files:
- SourceUrl: https://github.com/Mr-Ojii/AviUtl-DirBlur_M-Script/releases/download/r2/DirBlur_M.zip
  SHA256: f6a660e6780aa63c490e919c6c02488777860bdedc74d1fb520d5d63eeebf793
  Files:
  - Path: DirBlur_M.anm
    SHA256: aab5f7ec3f0dc87d0d4d7a6fef916579f9b06a99f02fb2743d50446361203a47
    Install:
      TargetPath: script/DirBlur_M.anm
  - Path: DirBlur_M.frag
    SHA256: bffedb0626c7505cbdb5f45b6407632041936ef46244d4e4b2fe9ef23333792f
  - Path: DirBlur_M.lua
    SHA256: 4e6bfffca34e6ae7633607fa87123d7599e8f9445904e443a811cdb0c37fd22e
    Install:
      TargetPath: script/DirBlur_M.lua
  - Path: LICENSE.txt
    SHA256: 90657545cf5fb868f201a3c1df69d4bb886168f571c8deb5b111034574085fc6
  - Path: Readme.md
    SHA256: ff19671b6fea349abe0fbc7119206037adeba8511976d649e92fb9fc36300f64
  - Path: Licenses/GLShaderKit.txt
    SHA256: 0a0c62a55e3f739d0c43e36dffb314f013f180b7e23614450382b5b015910d8e
ManifestVersion: 0.3.0

calloc134calloc134

オートブラー

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://github.com/korarei/AviUtl_AutoBlur_K_Script/releases/download/v1.2.0/AutoBlur_K_v1.2.0.zip" `
  -Identifier "AutoBlur-K" `
  -DisplayName "AutoBlur_K AviUtl Script" `
  -Version "1.2.0" `
  -ReleaseDate "2025-03-13" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.10)" `
  -Recommends "LuaJIT" `
  -Developer "korarei" `
  -Description "自動で方向ブラー、放射ブラー、回転ブラーをかけるスクリプト"  `
  -Website "https://github.com/korarei/AviUtl_AutoBlur_K_Script" `
  -Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: AutoBlur-K
DisplayName: AutoBlur_K AviUtl Script
Version: 1.2.0
ReleaseDate: 2025-03-13
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.10)
Recommends:
- LuaJIT
InstalledSize: 25869
Developer:
- korarei
Description: 自動で方向ブラー、放射ブラー、回転ブラーをかけるスクリプト
Website:
- https://github.com/korarei/AviUtl_AutoBlur_K_Script
Files:
- SourceUrl: https://github.com/korarei/AviUtl_AutoBlur_K_Script/releases/download/v1.2.0/AutoBlur_K_v1.2.0.zip
  SHA256: 32978d5ba169ebdce820026b46c8cc042a52d0f077195253ed04b5bcd2035a4b
  Files:
  - Path: script/AutoBlur_K.anm
    SHA256: 5b9bacc2174c7eccc9296f078647d3a1b5490bd4e1233bb8d944f5bda4c2d8b6
    Install:
      TargetPath: script/AutoBlur_K.anm
  - Path: script/LICENSE
    SHA256: 0561d171d83a78ea7a7914a93a97ec0d329bd80c6a2529d54dc036914baa64d5
    Install:
      TargetPath: script/LICENSE
  - Path: script/README.md
    SHA256: 0a2312bc55253dbb5e004030ab5e7f55103362eed1c583b86f87995757aab54e
    Install:
      TargetPath: script/README.md
ManifestVersion: 0.3.0

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://github.com/korarei/AviUtl_MotionBlur_K_Script/releases/download/v1.0.1/MotionBlur_K.zip" `
  -Identifier "MotionBlur-K" `
  -DisplayName "MotionBlur_K AviUtl Script" `
  -Version "1.0.1" `
  -ReleaseDate "2025-05-06" `
  -Section "Script" `
  -Architecture "x86" `
  -Depends "aviutl (>= 1.10)" `
  -Depends "exedit (= 0.92)" `
  -Depends "GLShaderKit (>= 0.4.0)" `
  -Depends "Visual C++ Redistributable (2015/2017/2019/2022 x86)" `
  -Suggests "rikkymodule" `
  -Developer "korarei" `
  -Description "モーションブラー系エフェクトを集めたスクリプト" `
  -Website "https://github.com/korarei/AviUtl_MotionBlur_K_Script" `
  -Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: MotionBlur-K
DisplayName: MotionBlur_K AviUtl Script
Version: 1.0.1
ReleaseDate: 2025-05-06
Section: Script
Architecture: x86
Depends:
- aviutl (>= 1.10)
Suggests:
- rikkymodule
InstalledSize: 285460
Developer:
- korarei
Description: モーションブラー系エフェクトを集めたスクリプト
Website:
- https://github.com/korarei/AviUtl_MotionBlur_K_Script
Files:
- SourceUrl: https://github.com/korarei/AviUtl_MotionBlur_K_Script/releases/download/v1.0.1/MotionBlur_K.zip
  SHA256: ef1a828aed01d6a383e66311aa3d04897e4f4a8c04c03a2096baedea578719b9
  Files:
  - Path: '@MotionBlur_K.anm'
    SHA256: c7743f76cd1bddd946f64def2a90b56dc3b3a41ae324bfc698a172c51334d20d
    Install:
      TargetPath: script/@MotionBlur_K.anm
  - Path: LICENSE
    SHA256: 49dc68c3bbf29356f5bcde96f11b80907168e824ad0faccf3530261ea09d4be1
  - Path: MotionBlur_K.dll
    SHA256: 50eb880ea4c041768f34c3bbb5aec2f24dbe2f243ff704f9af2a93958914505e
    Install:
      TargetPath: plugins/MotionBlur_K.dll
  - Path: README.md
    SHA256: 9e254ff99f7beabf4c54e5a3a115e7ed414a4e02723686c560b364872b9663c2
  - Path: shaders/MotionBlur_K.frag
    SHA256: a9ab71cb4d9bdbd435e5e52f2158f79f22834bb8a1ce8e5e5c7da71311831d11
ManifestVersion: 0.3.0

calloc134calloc134

全自動リリックモーションスクリプト

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl    "https://drive.google.com/file/d/1yhZJbZv4k2TbYY3kJVdxJW31lEl-_HH1/view?usp=sharing" `
  -Identifier   "AutoLyricMotion" `
  -DisplayName  "AutoLyricMotion" `
  -Version      "20230401" `
  -ReleaseDate  "2023-04-01" `
  -Section      "Script" `
  -Architecture "x86" `
  -Depends      "aviutl (>= 1.10)" `
  -Developer    "moll" `
  -Description  "テキストに全自動でリリックモーションを付けるテキストアニメーションスクリプト" `
  -Website      "https://seguimiii.com/aviutl-tech/autolyricmotion" `
  -Force


https://drive.google.com/file/d/1yhZJbZv4k2TbYY3kJVdxJW31lEl-_HH1/view?usp=sharing
calloc134calloc134

moll/AutoLyricMotion/20230401.yaml

# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: AutoLyricMotion
DisplayName: AutoLyricMotion
Version: "20230401"
ReleaseDate: 2023-04-01
Section: Script
Architecture: x86
Depends:
- aviutl (>= 1.10)
InstalledSize: 1715
Developer:
- moll
Description: テキストに全自動でリリックモーションを付けるテキストアニメーションスクリプト
Website:
- https://seguimiii.com/aviutl-tech/autolyricmotion
Files:
- SourceUrl: https://drive.google.com/uc?id=1yhZJbZv4k2TbYY3kJVdxJW31lEl-_HH1
  FileName: 全自動リリックモーション.anm
  SHA256: 8d3dd0c63d84908f3b8b9b5eec9a601ad79270032a6c035a476aa2750c0623dc
  Install:
    TargetPath: script/全自動リリックモーション.anm
ManifestVersion: 0.3.0
calloc134calloc134

ChatGPTにコマンド作成してもらうプロンプト

以下のスクリプトについて、コマンドを作成してください。

ここにファイル名

以下のコマンドを参考にすること。

--

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1
-SourceUrl "https://github.com/sigma-axis/aviutl_script_TrackBoundary_S/releases/download/v1.24/aviutl_script_TrackBoundary_S-v1.24.zip"
-Identifier "TrackBoundary-S"
-DisplayName "TrackBoundary_S AviUtl Script"
-Version "1.24"
-ReleaseDate "2024-08-04"
-Section "Script"
-Architecture "x64"
-Depends "aviutl (>= 1.10)"
-Recommends "LuaJIT"
-Developer "sigma-axis"
-Description "塗りつぶし2種 / 連結成分切り抜き / 穴埋めなどができる AviUtl アニメーション効果スクリプト 8 個セット"
-Website "https://github.com/sigma-axis/aviutl_script_TrackBoundary_S"
-Force

READMEは以下のとおりです

--- readme

READMEの内容

また、createManifest.ps1の中身は以下のとおりです。

--
(createManifestの内容)

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://drive.google.com/file/d/1xuoMKGN2UHooWJOwLzfbgMhago88lsjt/view?usp=drive_link" `
  -Identifier "RhythmicEasing-Loop" `
  -DisplayName "リズミカルイージング往復" `
  -Version "20241108" `
  -ReleaseDate "2024-11-08" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Recommends "LuaJIT" `
  -Developer "kotobuki" `
  -Description "BPM 指定で 2 つの値を行き来(往復)するイージング動作スクリプト" `
  -Website "https://www.nicovideo.jp/watch/sm44336458" `
  -Force
calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: RhythmicEasing-Loop
DisplayName: リズミカルイージング往復
Version: "20241108"
ReleaseDate: 2024-11-08
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
Recommends:
- LuaJIT
InstalledSize: 2915
Developer:
- kotobuki
Description: BPM 指定で 2 つの値を行き来(往復)するイージング動作スクリプト
Website:
- https://www.nicovideo.jp/watch/sm44336458
Files:
- SourceUrl: https://drive.google.com/uc?id=1xuoMKGN2UHooWJOwLzfbgMhago88lsjt
  FileName: '@往復.tra'
  SHA256: ea7acd185bd83a419a033da247db8e6bd5aac45b18556ab47e38f4fe4684df9f
  Install:
    TargetPath: script/@往復.tra
ManifestVersion: 0.3.0

kotobuki\RhythmicEasing-Loop

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://drive.google.com/file/d/1ctGmZYMEGSdlF-JOZWbBa-DYPC-vHHwE/view?usp=drive_link" `
  -Identifier "RhythmicEasing-Beat" `
  -DisplayName "リズミカルイージング ビート" `
  -Version "20241117" `
  -ReleaseDate "2024-11-17" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Developer "kotobuki" `
  -Description "BPM を入力することで、拍に合わせて動きを繰り返すビート動作スクリプト" `
  -Website "https://www.nicovideo.jp/watch/sm44336458" `
  -Force
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
-SourceUrl "https://drive.google.com/file/d/1pPAoOTvXXljpn4FjbrtNoFCPeZxhio_e/view?usp=drive_link" `
-Identifier "RhythmicEasing-Step" `
-DisplayName "リズミカルイージング ステップ" `
-Version "20241118" `
-ReleaseDate "2024-11-18" `
-Section "Script" `
-Architecture "x64" `
-Depends "aviutl (>= 1.00)" `
-Developer "kotobuki" `
-Description "拍数で分割したステップ数に応じて等分・段階的に動かすステップ動作スクリプト" `
-Website "https://www.nicovideo.jp/watch/sm44336458" `
-Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: RhythmicEasing-Beat
DisplayName: リズミカルイージング ビート
Version: "20241117"
ReleaseDate: 2024-11-17
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
InstalledSize: 3932
Developer:
- kotobuki
Description: BPM を入力することで、拍に合わせて動きを繰り返すビート動作スクリプト
Website:
- https://www.nicovideo.jp/watch/sm44336458
Files:
- SourceUrl: https://drive.google.com/uc?id=1ctGmZYMEGSdlF-JOZWbBa-DYPC-vHHwE
  FileName: '@ビート.tra'
  SHA256: c7ac8bb34c32d0f9c986c12e20577063bcc2c23f650b9d0d228fe70ddaf3ffc0
  Install:
    TargetPath: script/@ビート.tra
ManifestVersion: 0.3.0

RhythmicEasing-Beat

# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: RhythmicEasing-Step
DisplayName: リズミカルイージング ステップ
Version: "20241118"
ReleaseDate: 2024-11-18
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
InstalledSize: 1618
Developer:
- kotobuki
Description: 拍数で分割したステップ数に応じて等分・段階的に動かすステップ動作スクリプト
Website:
- https://www.nicovideo.jp/watch/sm44336458
Files:
- SourceUrl: https://drive.google.com/uc?id=1pPAoOTvXXljpn4FjbrtNoFCPeZxhio_e
  FileName: '@ステップ.tra'
  SHA256: 0ab385676f5555a2d87b10a9284cd05dd664a04dfbe43c31d768c802bc33072d
  Install:
    TargetPath: script/@ステップ.tra
ManifestVersion: 0.3.0

RhythmicEasing-Step

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://drive.google.com/file/d/15XzLv2lry9dN_rMF6E3ZrOr2AHWyZZdi/view?usp=sharing" `
  -Identifier "Halftone-LuaJIT" `
  -DisplayName "ハーフトーンスクリプト (LuaJIT)" `
  -Version "20210411" `
  -ReleaseDate "2021-04-11" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Recommends "LuaJIT" `
  -Developer "gometh" `
  -Description "LuaJIT 対応のハーフトーン(網点)エフェクトスクリプト" `
  -Website "https://www.nicovideo.jp/watch/sm38565819" `
  -Force


calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: Halftone-LuaJIT
DisplayName: ハーフトーンスクリプト (LuaJIT)
Version: "20210411"
ReleaseDate: 2021-04-11
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
Recommends:
- LuaJIT
InstalledSize: 3294
Developer:
- gometh
Description: LuaJIT 対応のハーフトーン(網点)エフェクトスクリプト
Website:
- https://www.nicovideo.jp/watch/sm38565819
Files:
- SourceUrl: https://drive.google.com/uc?id=15XzLv2lry9dN_rMF6E3ZrOr2AHWyZZdi
  FileName: ハーフトーン(g).anm
  SHA256: 2d4bc0818003b5b94d2c4a2da4bafc6bb3598f741dabefaf02b7d22afbea3f21
  Install:
    TargetPath: script/ハーフトーン(g).anm
ManifestVersion: 0.3.0

gometh\Halftone-LuaJIT

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://drive.google.com/file/d/13AZYerMDciBtK7-jvTttbMo0RKw-H8bV/view?usp=sharing" `
  -Identifier "MangaEffect-Ver3" `
  -DisplayName "漫画化エフェクト Ver.3" `
  -Version "3.0" `
  -ReleaseDate "2021-10-31" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Recommends "LuaJIT" `
  -Developer "gometh" `
  -Description "トーン画像不要・LuaJIT対応・背景透過も可能な漫画風エフェクトスクリプト Ver.3" `
  -Website "https://www.nicovideo.jp/watch/sm39560082" `
  -Force


calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: MangaEffect-Ver3
DisplayName: 漫画化エフェクト Ver.3
Version: "3.0"
ReleaseDate: 2021-10-31
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
Recommends:
- LuaJIT
InstalledSize: 22869
Developer:
- gometh
Description: トーン画像不要・LuaJIT対応・背景透過も可能な漫画風エフェクトスクリプト Ver.3
Website:
- https://www.nicovideo.jp/watch/sm39560082
Files:
- SourceUrl: https://drive.google.com/uc?id=13AZYerMDciBtK7-jvTttbMo0RKw-H8bV
  FileName: 漫画化v3.zip
  SHA256: 10ed7e4327aec9761e7a54b8d0e17fd6b80d5e5239a1550b1c825a72fb14370a
  Files:
  - Path: 漫画化v3/@漫画化v3.anm
    SHA256: fa41d03986e27188aa316706897c937ea96d2ba95bb7b1b7b997afa1d0304bc5
    Install:
      TargetPath: script/@漫画化v3.anm
  - Path: 漫画化v3/@漫画化v3トーン定義.anm
    SHA256: 711ab9f30d33333ba95df7d19a7fbb69fbba2c12536d0070ef6fea624375d62b
    Install:
      TargetPath: script/@漫画化v3トーン定義.anm
  - Path: 漫画化v3/readme.txt
    SHA256: 650389f238c62a5d2e8a99046b1f7aa9c5ff97adc7b5541dfe695fc7c1288c81
  - Path: 漫画化v3/漫画化v3トーン定義.exa
    SHA256: fcf2663c0253a022dafc2ac10b64c373c537442e6db344967b0e0587b0f603e7
    Install:
      TargetPath: 漫画化v3/漫画化v3トーン定義.exa
ManifestVersion: 0.3.0

\gometh\MangaEffect-Ver3

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://drive.google.com/file/d/1qbBPedVBK-KWhhKF9OqH2rxAAL5_sT-g/view?usp=drive_link" `
  -Identifier "Flatshadow-V" `
  -DisplayName "Flatshadow_V" `
  -Version "v1.0" `
  -ReleaseDate "2021-08-12" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Developer "mina" `
  -Description "画像や動画をフラットシャドウ風に処理するスクリプト" `
  -Website "https://www.youtube.com/watch?v=ZdcTaaTcEiY" `
  -Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: Flatshadow-V
DisplayName: Flatshadow_V
Version: v1.0
ReleaseDate: 2021-08-12
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
InstalledSize: 5665
Developer:
- mina
Description: 画像や動画をフラットシャドウ風に処理するスクリプト
Website:
- https://www.youtube.com/watch?v=ZdcTaaTcEiY
Files:
- SourceUrl: https://drive.google.com/uc?id=1qbBPedVBK-KWhhKF9OqH2rxAAL5_sT-g
  FileName: FlatShadow_V.anm
  SHA256: b3c0c658670b1e19bed72bc877174ccf20d5454e262c64417b9fb6a909d2e757
  Install:
    TargetPath: script/FlatShadow_V.anm
ManifestVersion: 0.3.0

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://drive.google.com/file/d/1xBxdGykZYMaa5Sq8sc6C9QKXonYIfoVy/view?usp=drive_link","https://drive.google.com/file/d/1HlK_tQ-lS93c4nrolNPKtEypW3Fu37x3/view?usp=drive_link" `
  -Identifier "BoundingBox" `
  -DisplayName "バウンディングボックス " `
  -Version "20220409" `
  -ReleaseDate "2022-04-09" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Developer "moll" `
  -Description "個別オブジェクトに自動で領域枠を付与するバウンディングボックススクリプト" `
  -Website "https://web.archive.org/web/20220426050247/https://twitter.com/moll_movie/status/1512825847195275267" `
  -Force

calloc134calloc134
pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://hazumurhythm.com/php/amazon_download.php?name=%E7%AB%8B%E4%BD%93%E5%8C%96(R)1Sm" `
  -Identifier "Dimensionize-R" `
  -DisplayName "立体化(R)" `
  -Version "20150807" `
  -ReleaseDate "2015-08-07" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Developer "rikky" `
  -Description "テキストや画像、オブジェクトに厚みを持たせて立体化するアニメーション効果スクリプト" `
  -Website "https://hazumurhythm.com/wev/amazon/?script=%E7%AB%8B%E4%BD%93%E5%8C%96(R)1Sm" `
  -Force

pwsh -ExecutionPolicy Bypass -File .\CreateManifest.ps1 `
  -SourceUrl "https://drive.google.com/file/d/1Dx68Fa_mN4_eHogEB_x1zj6RrkFZx2Uc/view?usp=sharing" `
  -Identifier "SmoothDimension" `
  -DisplayName "滑らか立体化スクリプト" `
  -Version "20220530" `
  -ReleaseDate "2022-05-30" `
  -Section "Script" `
  -Architecture "x64" `
  -Depends "aviutl (>= 1.00)" `
  -Developer "gometh" `
  -Description "輪郭線を小数点単位で追跡してオブジェクトを滑らかに立体化するスクリプト" `
  -Website "https://www.nicovideo.jp/watch/sm40545139" `
  -Force

calloc134calloc134
# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: Dimensionize-R
DisplayName: 立体化(R)
Version: "20150807"
ReleaseDate: 2015-08-07
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
InstalledSize: 128294
Developer:
- rikky
Description: テキストや画像、オブジェクトに厚みを持たせて立体化するアニメーション効果スクリプト
Website:
- https://hazumurhythm.com/wev/amazon/?script=%E7%AB%8B%E4%BD%93%E5%8C%96(R)1Sm
Files:
- SourceUrl: https://hazumurhythm.com/php/amazon_download.php?name=%E7%AB%8B%E4%BD%93%E5%8C%96(R)1Sm
  FileName: 立体化(R).zip
  SHA256: 8d5b9b0b8cedc9b516e04cb60059421e56a66a00e61b547d88578ef2b5fb4f97
  Files:
  - Path: 立体化/立体化(R).anm
    SHA256: fc5583427f0572dc6efbb53a473ed159704edb85822f1b62916d603d343b3991
    Install:
      TargetPath: script/立体化(R).anm
  - Path: 立体化/rikky_module ver1用/dimensionize.dll
    SHA256: 9b619b195a5609be86b576c7c5aa7a8285d7762ce356979b413659be637c661f
    Install:
      TargetPath: plugins/dimensionize.dll
  - Path: 立体化/rikky_module ver2用/dimensionize.dll
    SHA256: 3e9fa8199f3269db8b6c01c68aaf5d958c1ab63c64b05c088e51ba047da0edd7
    Install:
      TargetPath: plugins/dimensionize.dll
ManifestVersion: 0.3.0

Dimensionize-R

# Created using CreateManifest.ps1 v0.3.0
# yaml-language-server: $schema=https://raw.githubusercontent.com/Per-Terra/butler-pkgs/main/schemas/JSON/manifest/0.3.0.json

Identifier: SmoothDimension
DisplayName: 滑らか立体化スクリプト
Version: "20220530"
ReleaseDate: 2022-05-30
Section: Script
Architecture: x64
Depends:
- aviutl (>= 1.00)
InstalledSize: 8260
Developer:
- gometh
Description: 輪郭線を小数点単位で追跡してオブジェクトを滑らかに立体化するスクリプト
Website:
- https://www.nicovideo.jp/watch/sm40545139
Files:
- SourceUrl: https://drive.google.com/uc?id=1Dx68Fa_mN4_eHogEB_x1zj6RrkFZx2Uc
  FileName: 立体化(g).zip
  SHA256: 70eacae601b5a2936a01a1416e969240008098f2ebbd53efe9649478d7719f05
  Files:
  - Path: bordering.lua
    SHA256: a6572e02eaddda13fd927f0ab2b632389942d50f322d19b34976156f020162d4
    Install:
      TargetPath: script/bordering.lua
  - Path: 立体化(g).anm
    SHA256: 7359a8e0c9748393522454af627961b95db96d146302c8f46f923ac03a882c92
    Install:
      TargetPath: script/立体化(g).anm
ManifestVersion: 0.3.0

gometh\SmoothDimension