Thanks to visit codestin.com
Credit goes to GitHub.com

Skip to content

Convert UTAU Sequence Text and JSON to each other. UST情報(UTAU)とJSONを相互変換します。

License

Notifications You must be signed in to change notification settings

katai5plate/ust2json

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ust2json

UTAU スクリプトと JSON を相互変換します

yarn add katai5plate/ust2json
const {
  readUST,
  writeJSON,
  ustToJSON,
  writeUSTFromJSON,
  isNoteSection,
} = require("ust2json");

// UST を読み込む
const ust = readUST("./sample.ust");
// UST を JSON に変換
const json = ustToJSON(ust);

// JSON を書き出す
writeJSON("./result.json", json);

// JSON のすべての歌詞を「ぬ」に変更
const edited = json.map((element) => {
  const { section, entries } = element;
  if (isNoteSection(section)) {
    entries.Lyric = "ぬ";
    return element;
  }
  return element;
});

// 変更を加えた JSON を UST として書き出す
writeUSTFromJSON("./res.ust", edited);

About

Convert UTAU Sequence Text and JSON to each other. UST情報(UTAU)とJSONを相互変換します。

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published