mirror of
https://github.com/w-okada/voice-changer.git
synced 2025-01-23 13:35:12 +03:00
bugfix: change raw data folder in zip
This commit is contained in:
parent
391b61c073
commit
699f1c3ba0
File diff suppressed because one or more lines are too long
@ -45,7 +45,7 @@ export const ExportController = () => {
|
||||
const textData = targetCorpus.text[j]
|
||||
const textHiraData = targetCorpus.text_hira[j]
|
||||
// 生データ
|
||||
zip.file(`raw/${fileName}`, userData.micWavBlob);
|
||||
zip.file(`00_myvoice/raw/${fileName}`, userData.micWavBlob);
|
||||
|
||||
// // 24Khzデータ
|
||||
// const wav24Khz = convert48KhzTo24Khz(userData.micWavBlob);
|
||||
@ -58,7 +58,7 @@ export const ExportController = () => {
|
||||
const start = region ? region[0] : 0;
|
||||
const end = region ? region[1] : 0;
|
||||
const wav24KhzTrim = convert48KhzTo24Khz(userData.micWavBlob, start, end);
|
||||
zip.file(`rawTrim24k/${fileName}`, wav24KhzTrim);
|
||||
zip.file(`00_myvoice/rawTrim24k/${fileName}`, wav24KhzTrim);
|
||||
|
||||
// VF生データ
|
||||
zip.file(`00_myvoice/vf/${fileName}`, userData.vfWavBlob);
|
||||
|
Loading…
Reference in New Issue
Block a user