Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix 歌wave出力時のデフォルトファイル名を変更 #1859

Merged
merged 3 commits into from
Feb 20, 2024

Conversation

P0ngCh4ng
Copy link
Contributor

内容

src/store/singing.tsの1981行目に以下を追加しました。

var fileName = "song.wav"

const singer = getters.SELECTED_TRACK.singer;
const singerName = 
(getters.CHARACTER_INFO(singer!.engineId,(singer!.styleId))!.metas.speakerName);
          
if(singerName){
    const notes = getters.SELECTED_TRACK.notes.slice(0, 5);
    const beginningPartLyrics = notes.map((elem) => elem.lyric).join("");
    fileName = singerName + "_" + beginningPartLyrics + ".wav";
 }
            
const projectName = getters.PROJECT_NAME
if (projectName){
     fileName = projectName.split(".")[0] + ".wav";
 }

関連 Issue

ref #1833

その他

プロジェクトファイル名が指定されている場合はプロジェクトファイル名.wavが良い気がします。
プロジェクトファイル名が指定されていない場合は、たとえば[キャラ名]_[出だしの歌詞数文字]とかが良いと思います。

両方に対応しました。

@P0ngCh4ng P0ngCh4ng requested a review from a team as a code owner February 19, 2024 15:45
@P0ngCh4ng P0ngCh4ng requested review from Hiroshiba and removed request for a team February 19, 2024 15:45
Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

プルリクエストありがとうございます!!
かなり良い感じだと思います!!!

あ、フォーマットが必要なのでお願いします!方法はREADMEに書いています 🙏

それと、コードの流れを整理してこんな感じにするのはどうでしょう?

  • 関数に切り出す
  • プロジェクトファイル名があれば最初にそれを採用
  • singerがあればsinger名+5ノートを採用
  • どちらもなければsong.wavに

ファイル名と、その処理が現れる順番を一緒にして、優先度をわかりやすくする感じです!
ChatGPT君に(5回くらい)聞いてみたらそれっぽい答えを返してくれたので、参考になれば!!
https://chat.openai.com/share/b17896cb-ffc4-4c2e-9911-44ac33e43e22

Copy link
Member

@Hiroshiba Hiroshiba left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM!!!

プルリクエストありがとうございました!!
もしよかったら是非またよろしくお願いします!!!
わからないことがあったら本当に何でも聞いてください・・・!!

ちょっと細かいところをこちらで変更させていただきます!

const beginningPartLyrics = notes
.map((note) => note.lyric)
.join("");
return sanitizeFileName(
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ファイル名に使えない文字列が入っている可能性を考慮してませんでした 🙇

}
}

return "Untitled.wav";
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

トーク側がこの名前だったのでなんとなく合わせてみました

@Hiroshiba
Copy link
Member

問題ないと思うのでマージします!!

@Hiroshiba Hiroshiba merged commit 3e18a72 into VOICEVOX:main Feb 20, 2024
8 checks passed
@P0ngCh4ng P0ngCh4ng deleted the change-default-song-name branch February 21, 2024 08:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants