From 3499820affa2da0f31aac8dd661564d8e7e5b60e Mon Sep 17 00:00:00 2001 From: Hiroshiba Date: Sat, 16 Nov 2024 12:37:33 +0900 Subject: [PATCH] =?UTF-8?q?test:=20=E3=83=97=E3=83=AD=E3=82=B8=E3=82=A7?= =?UTF-8?q?=E3=82=AF=E3=83=88=E3=83=95=E3=82=A1=E3=82=A4=E3=83=AB=E3=82=92?= =?UTF-8?q?=E3=83=9E=E3=82=A4=E3=82=B0=E3=83=AC=E3=83=BC=E3=82=B7=E3=83=A7?= =?UTF-8?q?=E3=83=B3=E3=81=97=E3=81=9F=E3=81=82=E3=81=A8=E3=81=AB=E3=82=B9?= =?UTF-8?q?=E3=83=8A=E3=83=83=E3=83=97=E3=82=B7=E3=83=A7=E3=83=83=E3=83=88?= =?UTF-8?q?=E3=83=86=E3=82=B9=E3=83=88=20(#2354)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 3 + src/domain/project/index.ts | 3 +- src/store/project.ts | 3 +- src/store/singing.ts | 4 +- .../domain/__snapshots__/project.spec.ts.snap | 7046 +++++++++++++++++ .../{project.node.spec.ts => project.spec.ts} | 13 +- .../unit/domain/sing/shouldPlayTracks.spec.ts | 3 +- 7 files changed, 7067 insertions(+), 8 deletions(-) create mode 100644 tests/unit/domain/__snapshots__/project.spec.ts.snap rename tests/unit/domain/{project.node.spec.ts => project.spec.ts} (82%) diff --git a/.gitattributes b/.gitattributes index 173eb4dc7e..a3604b5d3d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,5 +1,8 @@ src/openapi/**/* linguist-generated=true openapi.json linguist-generated=true + +**/__snapshots__/**/*.snap linguist-generated=true + *.woff2 linguist-vendored=true * text=auto eol=lf diff --git a/src/domain/project/index.ts b/src/domain/project/index.ts index 6be25eb57b..af55415230 100644 --- a/src/domain/project/index.ts +++ b/src/domain/project/index.ts @@ -16,6 +16,7 @@ import { DEFAULT_TPQN, DEFAULT_TRACK_NAME, } from "@/sing/domain"; +import { uuid4 } from "@/helpers/random"; const DEFAULT_SAMPLING_RATE = 24000; @@ -297,7 +298,7 @@ export const migrateProjectFileObject = async ( track.mute = false; track.gain = 1; track.pan = 0; - newTracks[TrackId(crypto.randomUUID())] = track; + newTracks[TrackId(uuid4())] = track; } projectData.song.tracks = newTracks; projectData.song.trackOrder = Object.keys(newTracks); diff --git a/src/store/project.ts b/src/store/project.ts index bbe8023053..2be0be5ca6 100755 --- a/src/store/project.ts +++ b/src/store/project.ts @@ -27,6 +27,7 @@ import { showAlertDialog, showQuestionDialog, } from "@/components/Dialog/Dialog"; +import { uuid4 } from "@/helpers/random"; export const projectStoreState: ProjectStoreState = { savedLastCommandIds: { talk: null, song: null }, @@ -125,7 +126,7 @@ export const projectStore = createPartialStore({ await context.actions.SET_TIME_SIGNATURES({ timeSignatures: [createDefaultTimeSignature(1)], }); - const trackId = TrackId(crypto.randomUUID()); + const trackId = TrackId(uuid4()); await context.actions.SET_TRACKS({ tracks: new Map([[trackId, createDefaultTrack()]]), }); diff --git a/src/store/singing.ts b/src/store/singing.ts index fe81e422ed..f558d24b01 100644 --- a/src/store/singing.ts +++ b/src/store/singing.ts @@ -573,7 +573,7 @@ const singingPitchCache = new Map(); const singingVolumeCache = new Map(); const singingVoiceCache = new Map(); -const initialTrackId = TrackId(crypto.randomUUID()); +const initialTrackId = TrackId(uuid4()); /** * シーケンスの音源の出力を取得する。 @@ -1577,7 +1577,7 @@ export const singingStore = createPartialStore({ CREATE_TRACK: { action() { - const trackId = TrackId(crypto.randomUUID()); + const trackId = TrackId(uuid4()); const track = createDefaultTrack(); return { trackId, track }; diff --git a/tests/unit/domain/__snapshots__/project.spec.ts.snap b/tests/unit/domain/__snapshots__/project.spec.ts.snap new file mode 100644 index 0000000000..b6a1974afa --- /dev/null +++ b/tests/unit/domain/__snapshots__/project.spec.ts.snap @@ -0,0 +1,7046 @@ +// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html + +exports[`migrateProjectFileObject > v0.14.11 1`] = ` +{ + "appVersion": "0.14.7", + "song": { + "tempos": [ + { + "bpm": 120, + "position": 0, + }, + ], + "timeSignatures": [ + { + "beatType": 4, + "beats": 4, + "measureNumber": 1, + }, + ], + "tpqn": 480, + "trackOrder": [ + "00000000-0000-4000-0000-000000000001", + ], + "tracks": { + "00000000-0000-4000-0000-000000000001": { + "gain": 1, + "keyRangeAdjustment": 0, + "mute": false, + "name": "無名トラック", + "notes": [], + "pan": 0, + "pitchEditData": [], + "singer": undefined, + "solo": false, + "volumeRangeAdjustment": 0, + }, + }, + }, + "talk": { + "audioItems": { + "073844d5-795b-4228-a93a-7e7cda9f22d5": { + "query": { + "accentPhrases": [ + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07644294947385788, + "pitch": 5.738056659698486, + "text": "コ", + "vowel": "o", + "vowelLength": 0.09763658046722412, + }, + { + "pitch": 5.769685745239258, + "text": "ン", + "vowel": "N", + "vowelLength": 0.0783752053976059, + }, + { + "consonant": "b", + "consonantLength": 0.04702422022819519, + "pitch": 5.819332122802734, + "text": "バ", + "vowel": "a", + "vowelLength": 0.1322355717420578, + }, + { + "pitch": 5.797948837280273, + "text": "ン", + "vowel": "N", + "vowelLength": 0.04174881801009178, + }, + { + "consonant": "w", + "consonantLength": 0.06648090481758118, + "pitch": 5.715226173400879, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.17195048928260803, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.2488688826560974, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.06437346339225769, + "pitch": 5.87, + "text": "マ", + "vowel": "a", + "vowelLength": 0.09852069616317749, + }, + { + "pitch": 6.120847339630127, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06732170283794403, + }, + { + "consonant": "b", + "consonantLength": 0.03331798315048218, + "pitch": 5.95, + "text": "ベ", + "vowel": "e", + "vowelLength": 0.08550585061311722, + }, + { + "consonant": "ts", + "consonantLength": 0.06139057129621506, + "pitch": 0, + "text": "ツ", + "vowel": "U", + "vowelLength": 0.031297385692596436, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.05568430572748184, + "pitch": 5.41, + "text": "ハ", + "vowel": "a", + "vowelLength": 0.04412610083818436, + }, + { + "consonant": "n", + "consonantLength": 0.054402705281972885, + "pitch": 5.574256191253663, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.04762215167284012, + }, + { + "consonant": "m", + "consonantLength": 0.05364138260483742, + "pitch": 5.663132438659669, + "text": "マ", + "vowel": "a", + "vowelLength": 0.05751476809382439, + }, + { + "consonant": "r", + "consonantLength": 0.03876684233546257, + "pitch": 5.687716255187989, + "text": "ル", + "vowel": "u", + "vowelLength": 0.04182923585176468, + }, + { + "consonant": "d", + "consonantLength": 0.043814778327941895, + "pitch": 5.7200543975830085, + "text": "デ", + "vowel": "e", + "vowelLength": 0.10186167806386948, + }, + { + "consonant": "s", + "consonantLength": 0.09918432682752609, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.03834500163793564, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "こんばんは、まんべつ花丸です", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 69, + }, + }, + "08b5e92c-4c57-4274-972b-0a3b3663180f": { + "query": { + "accentPhrases": [ + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.060882166028022766, + "pitch": 3.3057737350463867, + "text": "ギ", + "vowel": "i", + "vowelLength": 0.06442725658416748, + }, + { + "consonant": "j", + "consonantLength": 0.06666547060012817, + "pitch": 2.8538289070129395, + "text": "ジュ", + "vowel": "u", + "vowelLength": 0.04429128021001816, + }, + { + "consonant": "ts", + "consonantLength": 0.059266071766614914, + "pitch": 3.320207118988037, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.02820180542767048, + }, + { + "consonant": "t", + "consonantLength": 0.038353729993104935, + "pitch": 2.816586494445801, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06360385566949844, + }, + { + "consonant": "k", + "consonantLength": 0.042765188962221146, + "pitch": 3.3670196533203125, + "text": "キ", + "vowel": "i", + "vowelLength": 0.035519473254680634, + }, + { + "consonant": "n", + "consonantLength": 0.04920853674411774, + "pitch": 2.6308698654174805, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.05413275212049484, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.07548300176858902, + "pitch": 3.3068971633911133, + "text": "モ", + "vowel": "o", + "vowelLength": 0.0718776062130928, + }, + { + "pitch": 2.475759983062744, + "text": "ン", + "vowel": "N", + "vowelLength": 0.05730954185128212, + }, + { + "consonant": "d", + "consonantLength": 0.03407611697912216, + "pitch": 3.3275046348571777, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.08176503330469131, + }, + { + "pitch": 2.413336753845215, + "text": "イ", + "vowel": "i", + "vowelLength": 0.042985670268535614, + }, + { + "consonant": "n", + "consonantLength": 0.0778636634349823, + "pitch": 3.239067554473877, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.0291470717638731, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.048056259751319885, + "pitch": 2.2650084495544434, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.025363219901919365, + }, + { + "consonant": "r", + "consonantLength": 0.050513871014118195, + "pitch": 3.092341899871826, + "text": "リ", + "vowel": "i", + "vowelLength": 0.04719765484333038, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.06085658818483353, + "pitch": 2.183457374572754, + "text": "ホ", + "vowel": "o", + "vowelLength": 0.051349908113479614, + }, + { + "pitch": 3.228386402130127, + "text": "オ", + "vowel": "o", + "vowelLength": 0.05489197373390198, + }, + { + "consonant": "s", + "consonantLength": 0.09786178916692734, + "pitch": 2.521766185760498, + "text": "ソ", + "vowel": "o", + "vowelLength": 0.06819726526737213, + }, + { + "pitch": 3.341010570526123, + "text": "オ", + "vowel": "o", + "vowelLength": 0.05592983216047287, + }, + { + "consonant": "g", + "consonantLength": 0.05792691558599472, + "pitch": 2.404386043548584, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.0738687589764595, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 3.2057318687438965, + "text": "イ", + "vowel": "i", + "vowelLength": 0.06470473855733871, + }, + { + "consonant": "ch", + "consonantLength": 0.07463213801383972, + "pitch": 2.266092300415039, + "text": "チ", + "vowel": "i", + "vowelLength": 0.030609307810664177, + }, + { + "consonant": "j", + "consonantLength": 0.06692219525575638, + "pitch": 3.145484447479248, + "text": "ジ", + "vowel": "i", + "vowelLength": 0.060075875371694565, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.08166704326868057, + "pitch": 2.236846446990967, + "text": "チュ", + "vowel": "u", + "vowelLength": 0.06939107179641724, + }, + { + "pitch": 3.087233543395996, + "text": "ウ", + "vowel": "u", + "vowelLength": 0.039332009851932526, + }, + { + "consonant": "d", + "consonantLength": 0.03758241608738899, + "pitch": 2.2959396839141846, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.11413060128688812, + }, + { + "pitch": 3.172795295715332, + "text": "ン", + "vowel": "N", + "vowelLength": 0.03352373465895653, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.07090801745653152, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.026653902605175972, + }, + { + "consonant": "t", + "consonantLength": 0.04058244824409485, + "pitch": 3.1293210983276367, + "text": "テ", + "vowel": "e", + "vowelLength": 0.05384812504053116, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 2.2115261554718018, + "text": "イ", + "vowel": "i", + "vowelLength": 0.06256254017353058, + }, + { + "consonant": "m", + "consonantLength": 0.05713854357600212, + "pitch": 3.076758861541748, + "text": "マ", + "vowel": "a", + "vowelLength": 0.08035445958375931, + }, + { + "consonant": "s", + "consonantLength": 0.11937854439020157, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.07033493369817734, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.3424285054206848, + }, + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.071, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.041, + }, + { + "consonant": "b", + "consonantLength": 0.044, + "pitch": 4.2058634757995605, + "text": "バ", + "vowel": "a", + "vowelLength": 0.087, + }, + { + "consonant": "r", + "consonantLength": 0.031307049095630646, + "pitch": 4.2253828048706055, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.09060805290937424, + }, + { + "consonant": "k", + "consonantLength": 0.058281198143959045, + "pitch": 4.294425964355469, + "text": "ク", + "vowel": "u", + "vowelLength": 0.021678222343325615, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "pitch": 4.304327011108398, + "text": "オ", + "vowel": "o", + "vowelLength": 0.08850095421075821, + }, + { + "consonant": "m", + "consonantLength": 0.0697345957159996, + "pitch": 4.329691410064697, + "text": "マ", + "vowel": "a", + "vowelLength": 0.05755317211151123, + }, + { + "consonant": "ch", + "consonantLength": 0.08367074280977249, + "pitch": 0, + "text": "チ", + "vowel": "I", + "vowelLength": 0.027793122455477715, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.03883823752403259, + "pitch": 4.378050327301025, + "text": "ク", + "vowel": "u", + "vowelLength": 0.033244065940380096, + }, + { + "consonant": "d", + "consonantLength": 0.04601845517754555, + "pitch": 4.430060863494873, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.0820806622505188, + }, + { + "consonant": "s", + "consonantLength": 0.09201054275035858, + "pitch": 4.49129581451416, + "text": "サ", + "vowel": "a", + "vowelLength": 0.12012035399675369, + }, + { + "pitch": 4.5691819190979, + "text": "イ", + "vowel": "i", + "vowelLength": 0.15138927102088928, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0.01, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "技術的な問題により放送が一時中断しています、しばらくお待ち下さい", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 71, + }, + }, + "0c29503e-174f-4734-991a-b878da6264bd": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.073, + "pitch": 5.317535400390625, + "text": "ホ", + "vowel": "o", + "vowelLength": 0.092, + }, + { + "pitch": 5.322769641876221, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06465414953231811, + }, + { + "consonant": "n", + "consonantLength": 0.03507681418955326, + "pitch": 5.130493640899658, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.077, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07948946952819824, + "pitch": 4.913119316101074, + "text": "カ", + "vowel": "a", + "vowelLength": 0.06470749527215958, + }, + { + "consonant": "sh", + "consonantLength": 0.0907287672162056, + "pitch": 5.126086711883545, + "text": "シ", + "vowel": "i", + "vowelLength": 0.04299876093864441, + }, + { + "consonant": "d", + "consonantLength": 0.027018876746296883, + "pitch": 5.138609886169434, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.08367917686700821, + }, + { + "consonant": "sh", + "consonantLength": 0.12589523196220398, + "pitch": 5.180984020233154, + "text": "シ", + "vowel": "i", + "vowelLength": 0.0408356711268425, + }, + { + "pitch": 5.131838321685791, + "text": "オ", + "vowel": "o", + "vowelLength": 0.07550671696662903, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.04500042647123337, + "pitch": 5.023818016052246, + "text": "ゴ", + "vowel": "o", + "vowelLength": 0.07304806262254715, + }, + { + "consonant": "k", + "consonantLength": 0.104, + "pitch": 5.180245876312256, + "text": "キ", + "vowel": "i", + "vowelLength": 0.057, + }, + { + "consonant": "b", + "consonantLength": 0.053, + "pitch": 5.21, + "text": "ボ", + "vowel": "o", + "vowelLength": 0.07955507934093475, + }, + { + "pitch": 5.24877405166626, + "text": "オ", + "vowel": "o", + "vowelLength": 0.05115359276533127, + }, + { + "consonant": "n", + "consonantLength": 0.03803423047065735, + "pitch": 5.223862171173096, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.0612674281001091, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07275997847318649, + "pitch": 5.11, + "text": "カ", + "vowel": "a", + "vowelLength": 0.06293229013681412, + }, + { + "consonant": "t", + "consonantLength": 0.06100244075059891, + "pitch": 5.16, + "text": "タ", + "vowel": "a", + "vowelLength": 0.09363154321908951, + }, + { + "consonant": "w", + "consonantLength": 0.03985369950532913, + "pitch": 4.930313243865967, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.18881328403949738, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.20331338047981262, + }, + }, + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.05020013451576233, + "pitch": 5.16049337387085, + "text": "カ", + "vowel": "a", + "vowelLength": 0.09603381901979446, + }, + { + "pitch": 5.280900001525879, + "text": "ウ", + "vowel": "u", + "vowelLength": 0.08217345923185349, + }, + { + "pitch": 5.279336929321289, + "text": "ン", + "vowel": "N", + "vowelLength": 0.05526398867368698, + }, + { + "consonant": "t", + "consonantLength": 0.0713924840092659, + "pitch": 5.240249156951904, + "text": "タ", + "vowel": "a", + "vowelLength": 0.08117439597845078, + }, + { + "pitch": 5.230502128601074, + "text": "ア", + "vowel": "a", + "vowelLength": 0.061064913868904114, + }, + { + "consonant": "m", + "consonantLength": 0.06307809799909592, + "pitch": 5.1661505699157715, + "text": "マ", + "vowel": "a", + "vowelLength": 0.08147219568490982, + }, + { + "consonant": "d", + "consonantLength": 0.04110122472047806, + "pitch": 4.947512149810791, + "text": "デ", + "vowel": "e", + "vowelLength": 0.06776070594787598, + }, + ], + }, + { + "accent": 7, + "isInterrogative": false, + "moras": [ + { + "pitch": 4.74, + "text": "オ", + "vowel": "o", + "vowelLength": 0.07039152830839157, + }, + { + "consonant": "m", + "consonantLength": 0.05977831035852432, + "pitch": 4.918910388946533, + "text": "モ", + "vowel": "o", + "vowelLength": 0.06895606219768524, + }, + { + "consonant": "ch", + "consonantLength": 0.06342605501413345, + "pitch": 0, + "text": "チ", + "vowel": "I", + "vowelLength": 0.04370761662721634, + }, + { + "consonant": "k", + "consonantLength": 0.07115277647972107, + "pitch": 5.08, + "text": "ク", + "vowel": "u", + "vowelLength": 0.048845984041690826, + }, + { + "consonant": "d", + "consonantLength": 0.03106929175555706, + "pitch": 5.07, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.07298093289136887, + }, + { + "consonant": "s", + "consonantLength": 0.0994335487484932, + "pitch": 5.08, + "text": "サ", + "vowel": "a", + "vowelLength": 0.10659465938806534, + }, + { + "pitch": 4.876503353118896, + "text": "イ", + "vowel": "i", + "vowelLength": 0.12329130619764328, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "本の貸し出しをご希望のかたは、カウンターまでお持ちください。", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "04dbd989-32d0-40b4-9e71-17c920f2a8a9", + "styleId": 67, + }, + }, + "14177923-b252-4e7e-a2b4-f94d077d831c": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07466340810060501, + "pitch": 6.121706485748291, + "text": "コ", + "vowel": "o", + "vowelLength": 0.10202978551387787, + }, + { + "pitch": 6.161038875579834, + "text": "ン", + "vowel": "N", + "vowelLength": 0.07293892651796341, + }, + { + "consonant": "y", + "consonantLength": 0.053651224821805954, + "pitch": 6.10270357131958, + "text": "ヤ", + "vowel": "a", + "vowelLength": 0.06947467476129532, + }, + { + "consonant": "w", + "consonantLength": 0.03562192618846893, + "pitch": 5.844625949859619, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.0840490534901619, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.07923799008131027, + "pitch": 5.794957160949707, + "text": "チョ", + "vowel": "o", + "vowelLength": 0.09114383161067963, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.046324603259563446, + }, + { + "consonant": "t", + "consonantLength": 0.03908882290124893, + "pitch": 6.092494964599609, + "text": "ト", + "vowel": "o", + "vowelLength": 0.050567254424095154, + }, + { + "consonant": "sh", + "consonantLength": 0.04912783205509186, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.02927943505346775, + }, + { + "consonant": "t", + "consonantLength": 0.04744763672351837, + "pitch": 6.144126892089844, + "text": "タ", + "vowel": "a", + "vowelLength": 0.07103092223405838, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.04361456632614136, + "pitch": 6.038599014282227, + "text": "サ", + "vowel": "a", + "vowelLength": 0.09390474855899811, + }, + { + "consonant": "p", + "consonantLength": 0.042264409363269806, + "pitch": 6.167442798614502, + "text": "プ", + "vowel": "u", + "vowelLength": 0.041933394968509674, + }, + { + "consonant": "r", + "consonantLength": 0.03146342560648918, + "pitch": 6.22771692276001, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.10022640228271484, + }, + { + "pitch": 6.2093186378479, + "text": "イ", + "vowel": "i", + "vowelLength": 0.0804995521903038, + }, + { + "consonant": "z", + "consonantLength": 0.05843910202383995, + "pitch": 6.162576675415039, + "text": "ズ", + "vowel": "u", + "vowelLength": 0.0170883908867836, + }, + { + "pitch": 6.061961650848389, + "text": "オ", + "vowel": "o", + "vowelLength": 0.09542417526245117, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.0981815904378891, + "pitch": 6.044277667999268, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.06564606726169586, + }, + { + "pitch": 6.131434440612793, + "text": "オ", + "vowel": "o", + "vowelLength": 0.0617048442363739, + }, + { + "pitch": 6.083162307739258, + "text": "イ", + "vowel": "i", + "vowelLength": 0.08170601725578308, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.05654284730553627, + "pitch": 5.9082159996032715, + "text": "シ", + "vowel": "i", + "vowelLength": 0.05109679698944092, + }, + { + "consonant": "t", + "consonantLength": 0.03686942532658577, + "pitch": 6.088957786560059, + "text": "テ", + "vowel": "e", + "vowelLength": 0.0667436420917511, + }, + { + "consonant": "r", + "consonantLength": 0.027744116261601448, + "pitch": 6.115140914916992, + "text": "ル", + "vowel": "u", + "vowelLength": 0.046672940254211426, + }, + { + "consonant": "y", + "consonantLength": 0.11286560446023941, + "pitch": 6.19, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.10421567410230637, + }, + { + "pitch": 6.07, + "text": "オ", + "vowel": "o", + "vowelLength": 0.033, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.24, + }, + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "t", + "consonantLength": 0.06692446768283844, + "pitch": 5.822265625, + "text": "タ", + "vowel": "a", + "vowelLength": 0.05400213599205017, + }, + { + "consonant": "n", + "consonantLength": 0.06017552688717842, + "pitch": 6.087908744812012, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.04604993015527725, + }, + { + "consonant": "sh", + "consonantLength": 0.08708124607801437, + "pitch": 6.17, + "text": "シ", + "vowel": "i", + "vowelLength": 0.030423453077673912, + }, + { + "consonant": "m", + "consonantLength": 0.05790676921606064, + "pitch": 6.232851505279541, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.0363575704395771, + }, + { + "consonant": "n", + "consonantLength": 0.06348913908004761, + "pitch": 6.24, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.05660194903612137, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.05177672207355499, + "pitch": 6.18, + "text": "シ", + "vowel": "i", + "vowelLength": 0.050366923213005066, + }, + { + "consonant": "t", + "consonantLength": 0.03220512717962265, + "pitch": 6.09561824798584, + "text": "テ", + "vowel": "e", + "vowelLength": 0.08435651659965515, + }, + { + "consonant": "t", + "consonantLength": 0.04123617708683014, + "pitch": 6.033794403076172, + "text": "テ", + "vowel": "e", + "vowelLength": 0.0718095451593399, + }, + { + "consonant": "n", + "consonantLength": 0.05741022899746895, + "pitch": 6, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.15087880194187164, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "今夜はちょっとしたサプライズを用意してるよ。楽しみにしててね", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 70, + }, + }, + "232a6713-10f9-4960-a885-b7273ad6e3a4": { + "query": { + "accentPhrases": [ + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.06005376577377319, + "pitch": 5.604859161376953, + "text": "コ", + "vowel": "o", + "vowelLength": 0.05501289665699005, + }, + { + "consonant": "n", + "consonantLength": 0.05758991837501526, + "pitch": 5.8, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.10758106410503387, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "t", + "consonantLength": 0.05031464248895645, + "pitch": 5.98, + "text": "ト", + "vowel": "o", + "vowelLength": 0.05582454800605774, + }, + { + "consonant": "sh", + "consonantLength": 0.11072786152362823, + "pitch": 5.9756337165832525, + "text": "シ", + "vowel": "i", + "vowelLength": 0.039875634014606476, + }, + { + "consonant": "n", + "consonantLength": 0.048365749418735504, + "pitch": 5.738034343719483, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.06532639265060425, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.09832529723644257, + "pitch": 5.49, + "text": "ヤ", + "vowel": "a", + "vowelLength": 0.07222859561443329, + }, + { + "consonant": "k", + "consonantLength": 0.06835099309682846, + "pitch": 5.713917961120606, + "text": "ケ", + "vowel": "e", + "vowelLength": 0.08573078364133835, + }, + { + "pitch": 5.759153118133545, + "text": "エ", + "vowel": "e", + "vowelLength": 0.09683692455291748, + }, + { + "consonant": "w", + "consonantLength": 0.08180852979421616, + "pitch": 5.83, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.04763565957546234, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.97, + "text": "イ", + "vowel": "i", + "vowelLength": 0.09123652428388596, + }, + { + "consonant": "ts", + "consonantLength": 0.09728507697582245, + "pitch": 5.7331465721130375, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.03558315709233284, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.05703028291463852, + "pitch": 5.772659778594971, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.08357737958431244, + }, + { + "consonant": "t", + "consonantLength": 0.040826939046382904, + "pitch": 5.760873794555664, + "text": "テ", + "vowel": "e", + "vowelLength": 0.05348886549472809, + }, + { + "consonant": "m", + "consonantLength": 0.07452666014432907, + "pitch": 5.489716053009033, + "text": "モ", + "vowel": "o", + "vowelLength": 0.07441511750221252, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.05755672603845596, + "pitch": 5.294652938842773, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.0786316767334938, + }, + { + "consonant": "ry", + "consonantLength": 0.0769944041967392, + "pitch": 5.535514831542969, + "text": "リョ", + "vowel": "o", + "vowelLength": 0.06486198306083679, + }, + { + "consonant": "k", + "consonantLength": 0.05948479473590851, + "pitch": 5.640725612640381, + "text": "ク", + "vowel": "u", + "vowelLength": 0.04266049712896347, + }, + { + "consonant": "t", + "consonantLength": 0.04783237725496292, + "pitch": 5.738335132598877, + "text": "テ", + "vowel": "e", + "vowelLength": 0.07879777252674103, + }, + { + "consonant": "k", + "consonantLength": 0.05905810743570328, + "pitch": 5.743114471435547, + "text": "キ", + "vowel": "i", + "vowelLength": 0.05703302472829819, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "d", + "consonantLength": 0.04713998734951019, + "pitch": 5.74, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.09412524849176407, + }, + { + "consonant": "n", + "consonantLength": 0.05288628488779068, + "pitch": 5.779999999999999, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.11913106590509415, + }, + { + "pitch": 5.939151840209961, + "text": "エ", + "vowel": "e", + "vowelLength": 0.055, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.4622439742088318, + }, + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.09199222922325134, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.03637830913066864, + }, + { + "consonant": "k", + "consonantLength": 0.05384732782840729, + "pitch": 6.010483264923096, + "text": "コ", + "vowel": "o", + "vowelLength": 0.08719158172607422, + }, + { + "consonant": "sh", + "consonantLength": 0.06764967739582062, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.0386144258081913, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.07449845969676971, + "pitch": 5.7, + "text": "サ", + "vowel": "a", + "vowelLength": 0.10259009897708893, + }, + { + "pitch": 5.83, + "text": "ン", + "vowel": "N", + "vowelLength": 0.08455139398574829, + }, + { + "consonant": "p", + "consonantLength": 0.048586294054985046, + "pitch": 5.87, + "text": "ポ", + "vowel": "o", + "vowelLength": 0.06764782220125198, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.07566510885953903, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.04017319530248642, + }, + { + "consonant": "t", + "consonantLength": 0.042941197752952576, + "pitch": 5.87, + "text": "テ", + "vowel": "e", + "vowelLength": 0.08828415721654892, + }, + { + "consonant": "k", + "consonantLength": 0.07029706984758377, + "pitch": 5.96, + "text": "ク", + "vowel": "u", + "vowelLength": 0.04953216016292572, + }, + { + "consonant": "r", + "consonantLength": 0.05858110636472702, + "pitch": 5.82, + "text": "ル", + "vowel": "u", + "vowelLength": 0.03765440732240677, + }, + { + "consonant": "y", + "consonantLength": 0.10129496455192566, + "pitch": 5.438078994750977, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.14472827315330505, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "ス'ベテノ/シ'_ステムガ/セエジョオ'/ド'オサ/_シテ'/イマ'_ス", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1.05, + "volumeScale": 1, + }, + "text": "この都市の夜景はいつ見ても魅力的だね。少し散歩してくるよ", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "97a4af4b-086e-4efd-b125-7ae2da85e697", + "styleId": 74, + }, + }, + "2add7ff5-0dfc-48b9-8aca-499c844afc30": { + "query": { + "accentPhrases": [ + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.04571932181715965, + "pitch": 5.585091590881348, + "text": "ゴ", + "vowel": "o", + "vowelLength": 0.07062871754169464, + }, + { + "consonant": "m", + "consonantLength": 0.04085708409547806, + "pitch": 5.847932815551758, + "text": "メ", + "vowel": "e", + "vowelLength": 0.11249713599681854, + }, + { + "pitch": 6.012417316436768, + "text": "ン", + "vowel": "N", + "vowelLength": 0.05235493183135986, + }, + { + "consonant": "k", + "consonantLength": 0.06918029487133026, + "pitch": 6.01761531829834, + "text": "ク", + "vowel": "u", + "vowelLength": 0.05798761546611786, + }, + { + "consonant": "d", + "consonantLength": 0.03205107897520065, + "pitch": 5.964698314666748, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.1005842462182045, + }, + { + "consonant": "s", + "consonantLength": 0.09272615611553192, + "pitch": 5.94942045211792, + "text": "サ", + "vowel": "a", + "vowelLength": 0.10545063018798828, + }, + { + "pitch": 5.715994358062744, + "text": "イ", + "vowel": "i", + "vowelLength": 0.09960107505321503, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.2880353033542633, + }, + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.681288242340088, + "text": "ア", + "vowel": "a", + "vowelLength": 0.10187873989343643, + }, + { + "pitch": 5.974994659423828, + "text": "イ", + "vowel": "i", + "vowelLength": 0.06658317893743515, + }, + { + "consonant": "d", + "consonantLength": 0.040957096964120865, + "pitch": 6.08144474029541, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.09751169383525848, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "n", + "consonantLength": 0.06026618182659149, + "pitch": 6.124342918395996, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.081, + }, + { + "pitch": 6.175774574279785, + "text": "エ", + "vowel": "e", + "vowelLength": 0.073, + }, + { + "consonant": "r", + "consonantLength": 0.01388172060251236, + "pitch": 5.970858573913574, + "text": "ル", + "vowel": "u", + "vowelLength": 0.08459233492612839, + }, + { + "consonant": "d", + "consonantLength": 0.04538620635867119, + "pitch": 5.662619113922119, + "text": "デ", + "vowel": "e", + "vowelLength": 0.13175137341022491, + }, + { + "consonant": "s", + "consonantLength": 0.07339081913232803, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.08513277024030685, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "ごめんください、あいだノエルです", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "dda44ade-5f9c-4a3a-9d2c-2a976c7476d9", + "styleId": 68, + }, + }, + "2c44cf99-542d-4644-bd1f-f1734334d4b2": { + "query": { + "accentPhrases": [ + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.05140995234251022, + "pitch": 5.544761657714844, + "text": "ギ", + "vowel": "i", + "vowelLength": 0.0849163830280304, + }, + { + "consonant": "j", + "consonantLength": 0.0553724505007267, + "pitch": 5.754842281341553, + "text": "ジュ", + "vowel": "u", + "vowelLength": 0.05387688800692558, + }, + { + "consonant": "ts", + "consonantLength": 0.04755103588104248, + "pitch": 5.996700286865234, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.04309934750199318, + }, + { + "consonant": "t", + "consonantLength": 0.03658916428685188, + "pitch": 6.125022888183594, + "text": "テ", + "vowel": "e", + "vowelLength": 0.0714428648352623, + }, + { + "consonant": "k", + "consonantLength": 0.03972481191158295, + "pitch": 6.15964412689209, + "text": "キ", + "vowel": "i", + "vowelLength": 0.04693051800131798, + }, + { + "consonant": "n", + "consonantLength": 0.04214438050985336, + "pitch": 6.1023759841918945, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.0661928579211235, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.06076841056346893, + "pitch": 5.965390205383301, + "text": "モ", + "vowel": "o", + "vowelLength": 0.0748705044388771, + }, + { + "pitch": 5.99737548828125, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06742226332426071, + }, + { + "consonant": "d", + "consonantLength": 0.024480614811182022, + "pitch": 6.061091423034668, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.08044256269931793, + }, + { + "pitch": 6.089413166046143, + "text": "イ", + "vowel": "i", + "vowelLength": 0.04836941882967949, + }, + { + "consonant": "n", + "consonantLength": 0.06951776891946793, + "pitch": 6.082034587860107, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.05029444396495819, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.05226799100637436, + "pitch": 6.05, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.034570686519145966, + }, + { + "consonant": "r", + "consonantLength": 0.04194064065814018, + "pitch": 6.01, + "text": "リ", + "vowel": "i", + "vowelLength": 0.07435472309589386, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.04831048101186752, + "pitch": 5.94, + "text": "ホ", + "vowel": "o", + "vowelLength": 0.06208726763725281, + }, + { + "pitch": 5.973034420013428, + "text": "オ", + "vowel": "o", + "vowelLength": 0.06738206744194031, + }, + { + "consonant": "s", + "consonantLength": 0.08185435086488724, + "pitch": 6.01, + "text": "ソ", + "vowel": "o", + "vowelLength": 0.07431232929229736, + }, + { + "pitch": 6.02, + "text": "オ", + "vowel": "o", + "vowelLength": 0.06483077257871628, + }, + { + "consonant": "g", + "consonantLength": 0.043698593974113464, + "pitch": 6.023708381652832, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.0835694670677185, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.901761054992676, + "text": "イ", + "vowel": "i", + "vowelLength": 0.08126267790794373, + }, + { + "consonant": "ch", + "consonantLength": 0.058958739042282104, + "pitch": 6.057676315307617, + "text": "チ", + "vowel": "i", + "vowelLength": 0.048403020948171616, + }, + { + "consonant": "j", + "consonantLength": 0.0561327189207077, + "pitch": 5.899379253387451, + "text": "ジ", + "vowel": "i", + "vowelLength": 0.08012914657592773, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.05746026337146759, + "pitch": 5.861433029174805, + "text": "チュ", + "vowel": "u", + "vowelLength": 0.07175849378108978, + }, + { + "pitch": 5.850629806518555, + "text": "ウ", + "vowel": "u", + "vowelLength": 0.05344802141189575, + }, + { + "consonant": "d", + "consonantLength": 0.02838238701224327, + "pitch": 5.882666110992432, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.11218544840812683, + }, + { + "pitch": 5.905115604400635, + "text": "ン", + "vowel": "N", + "vowelLength": 0.040031515061855316, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.054234664887189865, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.030004432424902916, + }, + { + "consonant": "t", + "consonantLength": 0.0389096699655056, + "pitch": 5.963849067687988, + "text": "テ", + "vowel": "e", + "vowelLength": 0.05377112329006195, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.936927318572998, + "text": "イ", + "vowel": "i", + "vowelLength": 0.07745055854320526, + }, + { + "consonant": "m", + "consonantLength": 0.052735693752765656, + "pitch": 5.956320762634277, + "text": "マ", + "vowel": "a", + "vowelLength": 0.09836774319410324, + }, + { + "consonant": "s", + "consonantLength": 0.09157934784889221, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.07525000721216202, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.3131769299507141, + }, + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.061033815145492554, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.021659506484866142, + }, + { + "consonant": "b", + "consonantLength": 0.052069563418626785, + "pitch": 5.915209770202637, + "text": "バ", + "vowel": "a", + "vowelLength": 0.06610152870416641, + }, + { + "consonant": "r", + "consonantLength": 0.031386930495500565, + "pitch": 6.115658760070801, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.10226520895957947, + }, + { + "consonant": "k", + "consonantLength": 0.042484186589717865, + "pitch": 5.9903974533081055, + "text": "ク", + "vowel": "u", + "vowelLength": 0.026917442679405212, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.799618721008301, + "text": "オ", + "vowel": "o", + "vowelLength": 0.0985078290104866, + }, + { + "consonant": "m", + "consonantLength": 0.06256996095180511, + "pitch": 5.767538070678711, + "text": "マ", + "vowel": "a", + "vowelLength": 0.07646211236715317, + }, + { + "consonant": "ch", + "consonantLength": 0.06541526317596436, + "pitch": 0, + "text": "チ", + "vowel": "I", + "vowelLength": 0.03179675340652466, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.039881862699985504, + "pitch": 5.936208248138428, + "text": "ク", + "vowel": "u", + "vowelLength": 0.038292065262794495, + }, + { + "consonant": "d", + "consonantLength": 0.03826359659433365, + "pitch": 5.933535099029541, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.09969344735145569, + }, + { + "consonant": "s", + "consonantLength": 0.07177478820085526, + "pitch": 5.977226734161377, + "text": "サ", + "vowel": "a", + "vowelLength": 0.1367846429347992, + }, + { + "pitch": 5.73060417175293, + "text": "イ", + "vowel": "i", + "vowelLength": 0.16294559836387634, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0.01, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "技術的な問題により放送が一時中断しています、しばらくお待ち下さい", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 72, + }, + }, + "5f4f2dba-d5bf-4841-a8b5-92d2d363d36f": { + "query": { + "accentPhrases": [ + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.06066294014453888, + "pitch": 5.331446647644043, + "text": "ギ", + "vowel": "i", + "vowelLength": 0.06483587622642517, + }, + { + "consonant": "j", + "consonantLength": 0.06639871746301651, + "pitch": 5.409581184387207, + "text": "ジュ", + "vowel": "u", + "vowelLength": 0.04451868683099747, + }, + { + "consonant": "ts", + "consonantLength": 0.05882895365357399, + "pitch": 5.396087169647217, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.028541414067149162, + }, + { + "consonant": "t", + "consonantLength": 0.038342200219631195, + "pitch": 5.453421592712402, + "text": "テ", + "vowel": "e", + "vowelLength": 0.063713937997818, + }, + { + "consonant": "k", + "consonantLength": 0.04264996200799942, + "pitch": 5.522083282470703, + "text": "キ", + "vowel": "i", + "vowelLength": 0.03578716889023781, + }, + { + "consonant": "n", + "consonantLength": 0.04900730028748512, + "pitch": 5.477444648742676, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.054348886013031006, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.07505805045366287, + "pitch": 5.482190132141113, + "text": "モ", + "vowel": "o", + "vowelLength": 0.07185238599777222, + }, + { + "pitch": 5.457715034484863, + "text": "ン", + "vowel": "N", + "vowelLength": 0.05748317390680313, + }, + { + "consonant": "d", + "consonantLength": 0.033810392022132874, + "pitch": 5.419482231140137, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.08161112666130066, + }, + { + "pitch": 5.421175003051758, + "text": "イ", + "vowel": "i", + "vowelLength": 0.04308926686644554, + }, + { + "consonant": "n", + "consonantLength": 0.07766786217689514, + "pitch": 5.413501739501953, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.02954402007162571, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.04817342013120651, + "pitch": 5.393481254577637, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.025539455935359, + }, + { + "consonant": "r", + "consonantLength": 0.050307709723711014, + "pitch": 5.365174770355225, + "text": "リ", + "vowel": "i", + "vowelLength": 0.04778677225112915, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.06038937717676163, + "pitch": 5.402837753295898, + "text": "ホ", + "vowel": "o", + "vowelLength": 0.05159854143857956, + }, + { + "pitch": 5.404297828674316, + "text": "オ", + "vowel": "o", + "vowelLength": 0.05517757683992386, + }, + { + "consonant": "s", + "consonantLength": 0.09737668931484222, + "pitch": 5.447657585144043, + "text": "ソ", + "vowel": "o", + "vowelLength": 0.06832042336463928, + }, + { + "pitch": 5.423847198486328, + "text": "オ", + "vowel": "o", + "vowelLength": 0.0561959370970726, + }, + { + "consonant": "g", + "consonantLength": 0.05745777487754822, + "pitch": 5.385942459106445, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.07411381602287292, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.346024513244629, + "text": "イ", + "vowel": "i", + "vowelLength": 0.0652368813753128, + }, + { + "consonant": "ch", + "consonantLength": 0.07420620322227478, + "pitch": 5.488548755645752, + "text": "チ", + "vowel": "i", + "vowelLength": 0.031003987416625023, + }, + { + "consonant": "j", + "consonantLength": 0.06666974723339081, + "pitch": 5.369824409484863, + "text": "ジ", + "vowel": "i", + "vowelLength": 0.06055361032485962, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.08089849352836609, + "pitch": 5.336582183837891, + "text": "チュ", + "vowel": "u", + "vowelLength": 0.06943592429161072, + }, + { + "pitch": 5.326114177703857, + "text": "ウ", + "vowel": "u", + "vowelLength": 0.0396539680659771, + }, + { + "consonant": "d", + "consonantLength": 0.037252604961395264, + "pitch": 5.292242050170898, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.11397657543420792, + }, + { + "pitch": 5.298307418823242, + "text": "ン", + "vowel": "N", + "vowelLength": 0.0336901918053627, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.07036872208118439, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.026692958548665047, + }, + { + "consonant": "t", + "consonantLength": 0.04059862717986107, + "pitch": 5.25, + "text": "テ", + "vowel": "e", + "vowelLength": 0.053793687373399734, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.24, + "text": "イ", + "vowel": "i", + "vowelLength": 0.06288062781095505, + }, + { + "consonant": "m", + "consonantLength": 0.05594668909907341, + "pitch": 5.263737297058106, + "text": "マ", + "vowel": "a", + "vowelLength": 0.07962847501039505, + }, + { + "consonant": "s", + "consonantLength": 0.11405831575393677, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.06953884661197662, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.3411780297756195, + }, + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.07217331230640411, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.020042413845658302, + }, + { + "consonant": "b", + "consonantLength": 0.05145413428544998, + "pitch": 5.315249443054199, + "text": "バ", + "vowel": "a", + "vowelLength": 0.05973486229777336, + }, + { + "consonant": "r", + "consonantLength": 0.032852306962013245, + "pitch": 5.397822856903076, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.09048803895711899, + }, + { + "consonant": "k", + "consonantLength": 0.058611661195755005, + "pitch": 5.299718856811523, + "text": "ク", + "vowel": "u", + "vowelLength": 0.02209162525832653, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.272424221038818, + "text": "オ", + "vowel": "o", + "vowelLength": 0.08862853050231934, + }, + { + "consonant": "m", + "consonantLength": 0.06947093456983566, + "pitch": 5.286405563354492, + "text": "マ", + "vowel": "a", + "vowelLength": 0.05807894468307495, + }, + { + "consonant": "ch", + "consonantLength": 0.08304803818464279, + "pitch": 0, + "text": "チ", + "vowel": "I", + "vowelLength": 0.027861181646585464, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.03885297477245331, + "pitch": 5.3, + "text": "ク", + "vowel": "u", + "vowelLength": 0.03330574929714203, + }, + { + "consonant": "d", + "consonantLength": 0.04579535499215126, + "pitch": 5.3137006759643555, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.08248262852430344, + }, + { + "consonant": "s", + "consonantLength": 0.061, + "pitch": 5.287442207336426, + "text": "サ", + "vowel": "a", + "vowelLength": 0.091, + }, + { + "pitch": 5.257048606872559, + "text": "イ", + "vowel": "i", + "vowelLength": 0.112, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0.01, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "技術的な問題により放送が一時中断しています、しばらくお待ち下さい", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 73, + }, + }, + "6a255bc3-ab1f-4ff6-b83f-57b369778c84": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07863037288188934, + "pitch": 5.915007591247559, + "text": "コ", + "vowel": "o", + "vowelLength": 0.0926278829574585, + }, + { + "pitch": 5.940700531005859, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06681256741285324, + }, + { + "consonant": "y", + "consonantLength": 0.05743153393268585, + "pitch": 5.83083963394165, + "text": "ヤ", + "vowel": "a", + "vowelLength": 0.06112491339445114, + }, + { + "consonant": "w", + "consonantLength": 0.04388410598039627, + "pitch": 5.478140830993652, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.0743725523352623, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.08689671754837036, + "pitch": 5.386196613311768, + "text": "チョ", + "vowel": "o", + "vowelLength": 0.08631180971860886, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.04660123586654663, + }, + { + "consonant": "t", + "consonantLength": 0.042420923709869385, + "pitch": 5.767093181610107, + "text": "ト", + "vowel": "o", + "vowelLength": 0.04469357430934906, + }, + { + "consonant": "sh", + "consonantLength": 0.054927416145801544, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.027054358273744583, + }, + { + "consonant": "t", + "consonantLength": 0.04881111532449722, + "pitch": 5.8029632568359375, + "text": "タ", + "vowel": "a", + "vowelLength": 0.06214442104101181, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.05158498138189316, + "pitch": 5.813578090667725, + "text": "サ", + "vowel": "a", + "vowelLength": 0.0846569612622261, + }, + { + "consonant": "p", + "consonantLength": 0.05082760006189346, + "pitch": 5.96, + "text": "プ", + "vowel": "u", + "vowelLength": 0.03908637911081314, + }, + { + "consonant": "r", + "consonantLength": 0.035366445779800415, + "pitch": 6.034679374694824, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.09446266293525696, + }, + { + "pitch": 6.0332879638671875, + "text": "イ", + "vowel": "i", + "vowelLength": 0.06942920386791229, + }, + { + "consonant": "z", + "consonantLength": 0.06531436741352081, + "pitch": 5.843825302124023, + "text": "ズ", + "vowel": "u", + "vowelLength": 0.01484449952840805, + }, + { + "pitch": 5.608212432861328, + "text": "オ", + "vowel": "o", + "vowelLength": 0.09030575305223465, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.10098870098590851, + "pitch": 5.6411575508117675, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.06708641350269318, + }, + { + "pitch": 5.8618253898620605, + "text": "オ", + "vowel": "o", + "vowelLength": 0.060187436640262604, + }, + { + "pitch": 5.67, + "text": "イ", + "vowel": "i", + "vowelLength": 0.0733669251203537, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.06063351780176163, + "pitch": 5.43, + "text": "シ", + "vowel": "i", + "vowelLength": 0.04216036945581436, + }, + { + "consonant": "t", + "consonantLength": 0.038137905299663544, + "pitch": 5.6904622840881345, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06422995030879974, + }, + { + "consonant": "r", + "consonantLength": 0.030629431828856468, + "pitch": 5.7601997184753415, + "text": "ル", + "vowel": "u", + "vowelLength": 0.036942046135663986, + }, + { + "consonant": "y", + "consonantLength": 0.11174361407756805, + "pitch": 5.72630220413208, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.079, + }, + { + "pitch": 5.946302204132079, + "text": "オ", + "vowel": "o", + "vowelLength": 0.085, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.13499462604522705, + }, + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "t", + "consonantLength": 0.07151508331298828, + "pitch": 5.3832221031188965, + "text": "タ", + "vowel": "a", + "vowelLength": 0.047293271869421005, + }, + { + "consonant": "n", + "consonantLength": 0.065324567258358, + "pitch": 5.658782482147217, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.04255177453160286, + }, + { + "consonant": "sh", + "consonantLength": 0.09265746921300888, + "pitch": 6.01907205581665, + "text": "シ", + "vowel": "i", + "vowelLength": 0.02632303349673748, + }, + { + "consonant": "m", + "consonantLength": 0.05891800671815872, + "pitch": 5.997309684753418, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.02976003848016262, + }, + { + "consonant": "n", + "consonantLength": 0.06815823912620544, + "pitch": 5.683307647705078, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.04852403327822685, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.05528062954545021, + "pitch": 5.514871120452881, + "text": "シ", + "vowel": "i", + "vowelLength": 0.040753837674856186, + }, + { + "consonant": "t", + "consonantLength": 0.03397934138774872, + "pitch": 5.656861305236816, + "text": "テ", + "vowel": "e", + "vowelLength": 0.08066558092832565, + }, + { + "consonant": "t", + "consonantLength": 0.04431445896625519, + "pitch": 5.63, + "text": "テ", + "vowel": "e", + "vowelLength": 0.067482590675354, + }, + { + "consonant": "n", + "consonantLength": 0.06200815737247467, + "pitch": 5.57, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.14773812890052795, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "今夜はちょっとしたサプライズを用意してるよ。楽しみにしててね", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 69, + }, + }, + "7fa5212d-361a-4a05-8841-f2ec994859a4": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.739296913146973, + "text": "ア", + "vowel": "a", + "vowelLength": 0.15831461548805237, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.3545130789279938, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.05878062546253204, + "pitch": 6.140989303588867, + "text": "チョ", + "vowel": "o", + "vowelLength": 0.089, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.07841243594884872, + }, + { + "consonant": "t", + "consonantLength": 0.05108453705906868, + "pitch": 5.884773254394531, + "text": "ト", + "vowel": "o", + "vowelLength": 0.06090337783098221, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.05889847129583359, + "pitch": 5.702308654785156, + "text": "マ", + "vowel": "a", + "vowelLength": 0.10242535173892975, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.06432247161865234, + }, + { + "consonant": "t", + "consonantLength": 0.040104206651449203, + "pitch": 5.49, + "text": "テ", + "vowel": "e", + "vowelLength": 0.04294756427407265, + }, + { + "consonant": "t", + "consonantLength": 0.09792003035545349, + "pitch": 5.28, + "text": "テ", + "vowel": "e", + "vowelLength": 0.14243485033512115, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.25, + }, + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.08776174795627593, + "pitch": 5.6832170486450195, + "text": "セ", + "vowel": "e", + "vowelLength": 0.10699054908752441, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.0724054233431816, + }, + { + "consonant": "t", + "consonantLength": 0.04281851586699485, + "pitch": 5.89, + "text": "テ", + "vowel": "e", + "vowelLength": 0.060993637263774866, + }, + { + "pitch": 5.96, + "text": "エ", + "vowel": "e", + "vowelLength": 0.072, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.07821035212278366, + "pitch": 5.96, + "text": "ヘ", + "vowel": "e", + "vowelLength": 0.09770397669076919, + }, + { + "pitch": 6.02, + "text": "ン", + "vowel": "N", + "vowelLength": 0.056, + }, + { + "consonant": "k", + "consonantLength": 0.08889131820201873, + "pitch": 5.947239456176757, + "text": "コ", + "vowel": "o", + "vowelLength": 0.07070643281936645, + }, + { + "pitch": 5.769616661071777, + "text": "オ", + "vowel": "o", + "vowelLength": 0.07324501699209213, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.052000872790813446, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.040768302977085114, + }, + { + "consonant": "t", + "consonantLength": 0.053089551627635956, + "pitch": 5.59, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06616409122943878, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.08107428252696991, + "pitch": 5.78, + "text": "ク", + "vowel": "u", + "vowelLength": 0.05338173359632492, + }, + { + "consonant": "r", + "consonantLength": 0.01994224637746811, + "pitch": 5.683320045471191, + "text": "ル", + "vowel": "u", + "vowelLength": 0.09546153992414474, + }, + { + "consonant": "n", + "consonantLength": 0.030639607459306717, + "pitch": 5.505563735961914, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.1297536939382553, + }, + { + "pitch": 5.73, + "text": "エ", + "vowel": "e", + "vowelLength": 0.091, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "ド'ンナ/セ'カイオ/_ツクリアゲラレ'ルカナ?", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "あ、ちょっと待ってて、設定変更してくるね", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "dda44ade-5f9c-4a3a-9d2c-2a976c7476d9", + "styleId": 68, + }, + }, + "944df35e-88e4-42ba-bfc5-3961085e0872": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.08550775796175003, + "pitch": 3.353912830352783, + "text": "コ", + "vowel": "o", + "vowelLength": 0.08264525234699249, + }, + { + "pitch": 2.7213711738586426, + "text": "ン", + "vowel": "N", + "vowelLength": 0.059946924448013306, + }, + { + "consonant": "y", + "consonantLength": 0.06459450721740723, + "pitch": 3.2877540588378906, + "text": "ヤ", + "vowel": "a", + "vowelLength": 0.05122283101081848, + }, + { + "consonant": "w", + "consonantLength": 0.05666176974773407, + "pitch": 2.544506549835205, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.06309778988361359, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.09838926792144775, + "pitch": 3.3081817626953125, + "text": "チョ", + "vowel": "o", + "vowelLength": 0.08086742460727692, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.05166640877723694, + }, + { + "consonant": "t", + "consonantLength": 0.04873967170715332, + "pitch": 4.054594993591309, + "text": "ト", + "vowel": "o", + "vowelLength": 0.03876551240682602, + }, + { + "consonant": "sh", + "consonantLength": 0.06530746817588806, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.025297192856669426, + }, + { + "consonant": "t", + "consonantLength": 0.04828019440174103, + "pitch": 4.156818866729736, + "text": "タ", + "vowel": "a", + "vowelLength": 0.05032699555158615, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.06425116211175919, + "pitch": 4.153507232666016, + "text": "サ", + "vowel": "a", + "vowelLength": 0.07192480564117432, + }, + { + "consonant": "p", + "consonantLength": 0.06608827412128448, + "pitch": 4.160678863525391, + "text": "プ", + "vowel": "u", + "vowelLength": 0.03449491783976555, + }, + { + "consonant": "r", + "consonantLength": 0.040563710033893585, + "pitch": 4.154589653015137, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.0875902846455574, + }, + { + "pitch": 4.150319576263428, + "text": "イ", + "vowel": "i", + "vowelLength": 0.05488784611225128, + }, + { + "consonant": "z", + "consonantLength": 0.07563574612140656, + "pitch": 4.155820846557617, + "text": "ズ", + "vowel": "u", + "vowelLength": 0.014278968796133995, + }, + { + "pitch": 4.16363000869751, + "text": "オ", + "vowel": "o", + "vowelLength": 0.08625675737857819, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.10483501851558685, + "pitch": 4.15742301940918, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.06888987869024277, + }, + { + "pitch": 4.166356563568115, + "text": "オ", + "vowel": "o", + "vowelLength": 0.05624829977750778, + }, + { + "pitch": 4.181858539581299, + "text": "イ", + "vowel": "i", + "vowelLength": 0.059829674661159515, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.06403026729822159, + "pitch": 4.197073936462402, + "text": "シ", + "vowel": "i", + "vowelLength": 0.029299063608050346, + }, + { + "consonant": "t", + "consonantLength": 0.03920851647853851, + "pitch": 4.3242692947387695, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06263144314289093, + }, + { + "consonant": "r", + "consonantLength": 0.066, + "pitch": 4.333216667175293, + "text": "ル", + "vowel": "u", + "vowelLength": 0.044, + }, + { + "consonant": "y", + "consonantLength": 0.072, + "pitch": 4.353621482849121, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.052, + }, + { + "pitch": 4.405552387237549, + "text": "オ", + "vowel": "o", + "vowelLength": 0.069, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.25, + }, + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "t", + "consonantLength": 0.07810131460428238, + "pitch": 4.481180667877197, + "text": "タ", + "vowel": "a", + "vowelLength": 0.0406111404299736, + }, + { + "consonant": "n", + "consonantLength": 0.07213307172060013, + "pitch": 4.504086971282959, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.03866758570075035, + }, + { + "consonant": "sh", + "consonantLength": 0.10063233226537704, + "pitch": 4.521895885467529, + "text": "シ", + "vowel": "i", + "vowelLength": 0.022152768447995186, + }, + { + "consonant": "m", + "consonantLength": 0.058419257402420044, + "pitch": 4.569084644317627, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.021271565929055214, + }, + { + "consonant": "n", + "consonantLength": 0.07205568999052048, + "pitch": 4.485863208770752, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.038864679634571075, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.05879489332437515, + "pitch": 4.580192565917969, + "text": "シ", + "vowel": "i", + "vowelLength": 0.028032375499606133, + }, + { + "consonant": "t", + "consonantLength": 0.03544740006327629, + "pitch": 4.456442356109619, + "text": "テ", + "vowel": "e", + "vowelLength": 0.0760107934474945, + }, + { + "consonant": "t", + "consonantLength": 0.048361487686634064, + "pitch": 4.374618053436279, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06286381185054779, + }, + { + "consonant": "n", + "consonantLength": 0.06847430020570755, + "pitch": 4.371547222137451, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.14479456841945648, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "今夜はちょっとしたサプライズを用意してるよ。楽しみにしててね", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 71, + }, + }, + "a2b69df2-7bcb-4bca-a7b5-fa50c3a6172a": { + "query": { + "accentPhrases": [ + { + "accent": 7, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.335045337677002, + "text": "エ", + "vowel": "e", + "vowelLength": 0.10750438272953033, + }, + { + "consonant": "n", + "consonantLength": 0.052222780883312225, + "pitch": 5.637660503387451, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.0958712175488472, + }, + { + "consonant": "r", + "consonantLength": 0.06712551414966583, + "pitch": 5.8316779136657715, + "text": "ル", + "vowel": "u", + "vowelLength": 0.07672858983278275, + }, + { + "consonant": "g", + "consonantLength": 0.060824841260910034, + "pitch": 5.875030994415283, + "text": "ギ", + "vowel": "i", + "vowelLength": 0.08797791600227356, + }, + { + "pitch": 5.8828887939453125, + "text": "イ", + "vowel": "i", + "vowelLength": 0.1029767096042633, + }, + { + "consonant": "k", + "consonantLength": 0.06661214679479599, + "pitch": 5.9234747886657715, + "text": "コ", + "vowel": "o", + "vowelLength": 0.09903071075677872, + }, + { + "pitch": 5.88766622543335, + "text": "ア", + "vowel": "a", + "vowelLength": 0.07365860790014267, + }, + { + "consonant": "n", + "consonantLength": 0.0533139705657959, + "pitch": 5.65630578994751, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.08659670501947403, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "j", + "consonantLength": 0.0821472629904747, + "pitch": 5.487100124359131, + "text": "ジョ", + "vowel": "o", + "vowelLength": 0.07147733122110367, + }, + { + "pitch": 5.627543926239014, + "text": "オ", + "vowel": "o", + "vowelLength": 0.10344511270523071, + }, + { + "consonant": "t", + "consonantLength": 0.05708672106266022, + "pitch": 5.693639278411865, + "text": "タ", + "vowel": "a", + "vowelLength": 0.09127527475357056, + }, + { + "pitch": 5.687403202056885, + "text": "イ", + "vowel": "i", + "vowelLength": 0.09326136857271194, + }, + { + "pitch": 5.657134532928467, + "text": "オ", + "vowel": "o", + "vowelLength": 0.11322636902332306, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.05756524205207825, + "pitch": 5.547158718109131, + "text": "カ", + "vowel": "a", + "vowelLength": 0.09010135382413864, + }, + { + "consonant": "k", + "consonantLength": 0.05261027067899704, + "pitch": 5.7489142417907715, + "text": "ク", + "vowel": "u", + "vowelLength": 0.06512146443128586, + }, + { + "consonant": "n", + "consonantLength": 0.05381116271018982, + "pitch": 5.783344745635986, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.1218402087688446, + }, + { + "pitch": 5.7810540199279785, + "text": "ン", + "vowel": "N", + "vowelLength": 0.04296029359102249, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.10836843401193619, + "pitch": 5.78, + "text": "シ", + "vowel": "i", + "vowelLength": 0.03928076848387718, + }, + { + "consonant": "m", + "consonantLength": 0.05585131794214249, + "pitch": 5.797665596008301, + "text": "マ", + "vowel": "a", + "vowelLength": 0.07750789076089859, + }, + { + "consonant": "sh", + "consonantLength": 0.08520989120006561, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.04437510669231415, + }, + { + "consonant": "t", + "consonantLength": 0.03948605805635452, + "pitch": 5.438575267791748, + "text": "タ", + "vowel": "a", + "vowelLength": 0.14749768376350403, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.26, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.11304996907711029, + "pitch": 5.961342811584473, + "text": "ス", + "vowel": "u", + "vowelLength": 0.04335722327232361, + }, + { + "consonant": "b", + "consonantLength": 0.04610870033502579, + "pitch": 5.992776393890381, + "text": "ベ", + "vowel": "e", + "vowelLength": 0.10665611922740936, + }, + { + "consonant": "t", + "consonantLength": 0.04019441455602646, + "pitch": 5.770277976989746, + "text": "テ", + "vowel": "e", + "vowelLength": 0.07385476678609848, + }, + { + "consonant": "n", + "consonantLength": 0.05823651701211929, + "pitch": 5.5202202796936035, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.07086458057165146, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.09217868000268936, + "pitch": 5.75, + "text": "シ", + "vowel": "i", + "vowelLength": 0.04987810552120209, + }, + { + "consonant": "s", + "consonantLength": 0.08211332559585571, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.04086020588874817, + }, + { + "consonant": "t", + "consonantLength": 0.043828241527080536, + "pitch": 5.723071098327637, + "text": "テ", + "vowel": "e", + "vowelLength": 0.057005614042282104, + }, + { + "consonant": "m", + "consonantLength": 0.06765390187501907, + "pitch": 5.56435489654541, + "text": "ム", + "vowel": "u", + "vowelLength": 0.07565444707870483, + }, + { + "consonant": "g", + "consonantLength": 0.049562230706214905, + "pitch": 5.34694766998291, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.06535126268863678, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.10053760558366776, + "pitch": 5.63, + "text": "セ", + "vowel": "e", + "vowelLength": 0.09455274790525436, + }, + { + "pitch": 5.706991081237793, + "text": "エ", + "vowel": "e", + "vowelLength": 0.11160780489444733, + }, + { + "consonant": "j", + "consonantLength": 0.0814182460308075, + "pitch": 5.83, + "text": "ジョ", + "vowel": "o", + "vowelLength": 0.08173476904630661, + }, + { + "pitch": 5.85, + "text": "オ", + "vowel": "o", + "vowelLength": 0.0858267992734909, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "d", + "consonantLength": 0.05382397025823593, + "pitch": 5.87, + "text": "ド", + "vowel": "o", + "vowelLength": 0.07184445112943649, + }, + { + "pitch": 5.84, + "text": "オ", + "vowel": "o", + "vowelLength": 0.0823279470205307, + }, + { + "consonant": "s", + "consonantLength": 0.08723412454128265, + "pitch": 5.515943737030029, + "text": "サ", + "vowel": "a", + "vowelLength": 0.06542159616947174, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.08419769257307053, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.0463716983795166, + }, + { + "consonant": "t", + "consonantLength": 0.04119797796010971, + "pitch": 5.51, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06666048616170883, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.55, + "text": "イ", + "vowel": "i", + "vowelLength": 0.09824398159980774, + }, + { + "consonant": "m", + "consonantLength": 0.060228556394577026, + "pitch": 5.48, + "text": "マ", + "vowel": "a", + "vowelLength": 0.10181111097335815, + }, + { + "consonant": "s", + "consonantLength": 0.12892833352088928, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.015801839530467987, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1.05, + "volumeScale": 1, + }, + "text": "エネルギーコアの状態を確認しました。すべてのシステムが正常動作しています", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "97a4af4b-086e-4efd-b125-7ae2da85e697", + "styleId": 74, + }, + }, + "ab8856e4-de32-442c-b924-3c5bbc34109d": { + "query": { + "accentPhrases": [ + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.08247312903404236, + "pitch": 5.4457855224609375, + "text": "コ", + "vowel": "o", + "vowelLength": 0.0878651887178421, + }, + { + "pitch": 5.453024864196777, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06801895797252655, + }, + { + "consonant": "b", + "consonantLength": 0.05306144431233406, + "pitch": 5.409118175506592, + "text": "バ", + "vowel": "a", + "vowelLength": 0.11821158975362778, + }, + { + "pitch": 5.379701614379883, + "text": "ン", + "vowel": "N", + "vowelLength": 0.03886077553033829, + }, + { + "consonant": "w", + "consonantLength": 0.08062924444675446, + "pitch": 5.321470737457275, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.1413734406232834, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.25469470024108887, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.06661230325698853, + "pitch": 5.423567771911621, + "text": "マ", + "vowel": "a", + "vowelLength": 0.08909910917282104, + }, + { + "pitch": 5.479893684387207, + "text": "ン", + "vowel": "N", + "vowelLength": 0.059807188808918, + }, + { + "consonant": "b", + "consonantLength": 0.03549462929368019, + "pitch": 5.400028705596924, + "text": "ベ", + "vowel": "e", + "vowelLength": 0.07119990140199661, + }, + { + "consonant": "ts", + "consonantLength": 0.06900088489055634, + "pitch": 0, + "text": "ツ", + "vowel": "U", + "vowelLength": 0.030543392524123192, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.06249196082353592, + "pitch": 5.16, + "text": "ハ", + "vowel": "a", + "vowelLength": 0.03811278194189072, + }, + { + "consonant": "n", + "consonantLength": 0.058756597340106964, + "pitch": 5.18, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.04671398922801018, + }, + { + "consonant": "m", + "consonantLength": 0.05689462274312973, + "pitch": 5.21, + "text": "マ", + "vowel": "a", + "vowelLength": 0.049802932888269424, + }, + { + "consonant": "r", + "consonantLength": 0.03772298991680145, + "pitch": 5.285618782043457, + "text": "ル", + "vowel": "u", + "vowelLength": 0.0334601104259491, + }, + { + "consonant": "d", + "consonantLength": 0.04965655505657196, + "pitch": 5.212176322937012, + "text": "デ", + "vowel": "e", + "vowelLength": 0.09391451627016068, + }, + { + "consonant": "s", + "consonantLength": 0.11829051375389099, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.029972290620207787, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "こんばんは、まんべつ花丸です", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 73, + }, + }, + "b7413df6-dcef-4da5-9592-57745998434e": { + "query": { + "accentPhrases": [ + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07308071851730347, + "pitch": 5.88, + "text": "コ", + "vowel": "o", + "vowelLength": 0.10786385834217072, + }, + { + "pitch": 6.032950401306152, + "text": "ン", + "vowel": "N", + "vowelLength": 0.0865953117609024, + }, + { + "consonant": "b", + "consonantLength": 0.04412248358130455, + "pitch": 6.074184417724609, + "text": "バ", + "vowel": "a", + "vowelLength": 0.14234086871147156, + }, + { + "pitch": 6.0384321212768555, + "text": "ン", + "vowel": "N", + "vowelLength": 0.04541134089231491, + }, + { + "consonant": "w", + "consonantLength": 0.05983290821313858, + "pitch": 6.04, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.19041353464126587, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.2514641582965851, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.06404377520084381, + "pitch": 6.0559210777282715, + "text": "マ", + "vowel": "a", + "vowelLength": 0.10634185373783112, + }, + { + "pitch": 6.227285861968994, + "text": "ン", + "vowel": "N", + "vowelLength": 0.07318765670061111, + }, + { + "consonant": "b", + "consonantLength": 0.030447309836745262, + "pitch": 6.24375581741333, + "text": "ベ", + "vowel": "e", + "vowelLength": 0.09456809610128403, + }, + { + "consonant": "ts", + "consonantLength": 0.05683628469705582, + "pitch": 0, + "text": "ツ", + "vowel": "U", + "vowelLength": 0.03227855637669563, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.0513189435005188, + "pitch": 5.87, + "text": "ハ", + "vowel": "a", + "vowelLength": 0.04914591461420059, + }, + { + "consonant": "n", + "consonantLength": 0.05081891268491745, + "pitch": 5.984041213989258, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.050583306699991226, + }, + { + "consonant": "m", + "consonantLength": 0.050647854804992676, + "pitch": 6.017366409301758, + "text": "マ", + "vowel": "a", + "vowelLength": 0.06364253908395767, + }, + { + "consonant": "r", + "consonantLength": 0.037924863398075104, + "pitch": 6.017005920410156, + "text": "ル", + "vowel": "u", + "vowelLength": 0.04815763235092163, + }, + { + "consonant": "d", + "consonantLength": 0.03889799118041992, + "pitch": 6.1, + "text": "デ", + "vowel": "e", + "vowelLength": 0.10926257073879242, + }, + { + "consonant": "s", + "consonantLength": 0.08924001455307007, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.043758392333984375, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "こんばんは、まんべつ花丸です", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 70, + }, + }, + "be555d00-138d-4056-9c59-e0238b47501e": { + "query": { + "accentPhrases": [ + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.330529689788818, + "text": "イ", + "vowel": "i", + "vowelLength": 0.09889782965183258, + }, + { + "consonant": "r", + "consonantLength": 0.04955170303583145, + "pitch": 5.582522392272949, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.09236599504947662, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.056950077414512634, + }, + { + "consonant": "sh", + "consonantLength": 0.1173185482621193, + "pitch": 5.854012966156006, + "text": "シャ", + "vowel": "a", + "vowelLength": 0.08818788826465607, + }, + { + "pitch": 5.859909534454346, + "text": "イ", + "vowel": "i", + "vowelLength": 0.07552164047956467, + }, + { + "consonant": "m", + "consonantLength": 0.05665913224220276, + "pitch": 5.820289611816406, + "text": "マ", + "vowel": "a", + "vowelLength": 0.0769067034125328, + }, + { + "consonant": "s", + "consonantLength": 0.09543466567993164, + "pitch": 5.460167407989502, + "text": "セ", + "vowel": "e", + "vowelLength": 0.13962650299072266, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.25, + }, + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.06121266633272171, + "pitch": 5.351562023162842, + "text": "コ", + "vowel": "o", + "vowelLength": 0.06550291180610657, + }, + { + "consonant": "t", + "consonantLength": 0.04228643327951431, + "pitch": 5.6885576248168945, + "text": "ト", + "vowel": "o", + "vowelLength": 0.0674024373292923, + }, + { + "consonant": "y", + "consonantLength": 0.08448726683855057, + "pitch": 5.790962219238281, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.05859430879354477, + }, + { + "consonant": "m", + "consonantLength": 0.05685298144817352, + "pitch": 5.787491321563721, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.08480535447597504, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "n", + "consonantLength": 0.05105754733085632, + "pitch": 5.82, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.08844184875488281, + }, + { + "pitch": 5.8500000000000005, + "text": "ア", + "vowel": "a", + "vowelLength": 0.10264676064252853, + }, + { + "consonant": "d", + "consonantLength": 0.050377823412418365, + "pitch": 5.443594360351563, + "text": "デ", + "vowel": "e", + "vowelLength": 0.09381821006536484, + }, + { + "consonant": "s", + "consonantLength": 0.12946923077106476, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.01697906292974949, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "いらっしゃいませ、ことよみニアです", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "97a4af4b-086e-4efd-b125-7ae2da85e697", + "styleId": 74, + }, + }, + "c86dd3dc-5469-4ef2-a6e6-c7820d948827": { + "query": { + "accentPhrases": [ + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.04788290336728096, + "pitch": 5.629432678222656, + "text": "ギ", + "vowel": "i", + "vowelLength": 0.09334456920623779, + }, + { + "consonant": "j", + "consonantLength": 0.05107228457927704, + "pitch": 5.8538103103637695, + "text": "ジュ", + "vowel": "u", + "vowelLength": 0.057340413331985474, + }, + { + "consonant": "ts", + "consonantLength": 0.04478978365659714, + "pitch": 6.08111572265625, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.04835985600948334, + }, + { + "consonant": "t", + "consonantLength": 0.035344529896974564, + "pitch": 6.196120738983154, + "text": "テ", + "vowel": "e", + "vowelLength": 0.07482410967350006, + }, + { + "consonant": "k", + "consonantLength": 0.03849342092871666, + "pitch": 6.224876403808594, + "text": "キ", + "vowel": "i", + "vowelLength": 0.0513368658721447, + }, + { + "consonant": "n", + "consonantLength": 0.039588212966918945, + "pitch": 6.17350959777832, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.0712796226143837, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.05631116032600403, + "pitch": 6.055054664611816, + "text": "モ", + "vowel": "o", + "vowelLength": 0.07699571549892426, + }, + { + "pitch": 6.082940101623535, + "text": "ン", + "vowel": "N", + "vowelLength": 0.07181185483932495, + }, + { + "consonant": "d", + "consonantLength": 0.02123534306883812, + "pitch": 6.150518417358398, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.08137185126543045, + }, + { + "pitch": 6.183558940887451, + "text": "イ", + "vowel": "i", + "vowelLength": 0.05036984384059906, + }, + { + "consonant": "n", + "consonantLength": 0.06594519317150116, + "pitch": 6.1805548667907715, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.059101030230522156, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.053757451474666595, + "pitch": 6.133901596069336, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.038067251443862915, + }, + { + "consonant": "r", + "consonantLength": 0.03870367631316185, + "pitch": 6.104527473449707, + "text": "リ", + "vowel": "i", + "vowelLength": 0.08437657356262207, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.04513070732355118, + "pitch": 5.96, + "text": "ホ", + "vowel": "o", + "vowelLength": 0.06604621559381485, + }, + { + "pitch": 6.078771591186523, + "text": "オ", + "vowel": "o", + "vowelLength": 0.07210688292980194, + }, + { + "consonant": "s", + "consonantLength": 0.07687091082334518, + "pitch": 6.129355430603027, + "text": "ソ", + "vowel": "o", + "vowelLength": 0.07684297859668732, + }, + { + "pitch": 6.131913185119629, + "text": "オ", + "vowel": "o", + "vowelLength": 0.06770981103181839, + }, + { + "consonant": "g", + "consonantLength": 0.039568983018398285, + "pitch": 6.1011061668396, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.0868525430560112, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 6.019827842712402, + "text": "イ", + "vowel": "i", + "vowelLength": 0.08556587249040604, + }, + { + "consonant": "ch", + "consonantLength": 0.053477488458156586, + "pitch": 6.147215366363525, + "text": "チ", + "vowel": "i", + "vowelLength": 0.055467039346694946, + }, + { + "consonant": "j", + "consonantLength": 0.05216123163700104, + "pitch": 6.0320210456848145, + "text": "ジ", + "vowel": "i", + "vowelLength": 0.08754296600818634, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.05033925175666809, + "pitch": 6.001887321472168, + "text": "チュ", + "vowel": "u", + "vowelLength": 0.07296925783157349, + }, + { + "pitch": 5.979004383087158, + "text": "ウ", + "vowel": "u", + "vowelLength": 0.05871997028589249, + }, + { + "consonant": "d", + "consonantLength": 0.025988135486841202, + "pitch": 6.0024285316467285, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.11270532011985779, + }, + { + "pitch": 6.020287036895752, + "text": "ン", + "vowel": "N", + "vowelLength": 0.042408332228660583, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.049002863466739655, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.03172890841960907, + }, + { + "consonant": "t", + "consonantLength": 0.03740987181663513, + "pitch": 6.094997406005859, + "text": "テ", + "vowel": "e", + "vowelLength": 0.054491885006427765, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 6.0710601806640625, + "text": "イ", + "vowel": "i", + "vowelLength": 0.08297506719827652, + }, + { + "consonant": "m", + "consonantLength": 0.05192611366510391, + "pitch": 6.074428558349609, + "text": "マ", + "vowel": "a", + "vowelLength": 0.10726512223482132, + }, + { + "consonant": "s", + "consonantLength": 0.08893811702728271, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.07756268978118896, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.3222866654396057, + }, + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.07391306012868881, + "pitch": 5.891619682312012, + "text": "シ", + "vowel": "i", + "vowelLength": 0.040007345378398895, + }, + { + "consonant": "b", + "consonantLength": 0.046538785099983215, + "pitch": 6.060691833496094, + "text": "バ", + "vowel": "a", + "vowelLength": 0.06851223111152649, + }, + { + "consonant": "r", + "consonantLength": 0.02817213535308838, + "pitch": 6.210298538208008, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.1075628325343132, + }, + { + "consonant": "k", + "consonantLength": 0.036254510283470154, + "pitch": 6.150874137878418, + "text": "ク", + "vowel": "u", + "vowelLength": 0.028488105162978172, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.998965263366699, + "text": "オ", + "vowel": "o", + "vowelLength": 0.10292407870292664, + }, + { + "consonant": "m", + "consonantLength": 0.06064213812351227, + "pitch": 5.982398986816406, + "text": "マ", + "vowel": "a", + "vowelLength": 0.08293133229017258, + }, + { + "consonant": "ch", + "consonantLength": 0.060012467205524445, + "pitch": 0, + "text": "チ", + "vowel": "I", + "vowelLength": 0.03364007920026779, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.04035336896777153, + "pitch": 6.080809593200684, + "text": "ク", + "vowel": "u", + "vowelLength": 0.04058533161878586, + }, + { + "consonant": "d", + "consonantLength": 0.035775765776634216, + "pitch": 6.074947834014893, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.10667866468429565, + }, + { + "consonant": "s", + "consonantLength": 0.065434031188488, + "pitch": 6.06865119934082, + "text": "サ", + "vowel": "a", + "vowelLength": 0.14297375082969666, + }, + { + "pitch": 5.828543663024902, + "text": "イ", + "vowel": "i", + "vowelLength": 0.1647253930568695, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0.01, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "技術的な問題により放送が一時中断しています、しばらくお待ち下さい", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 70, + }, + }, + "c9a4b40d-791a-4b6e-868c-709ad32547be": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.08528260886669159, + "pitch": 5.649871826171875, + "text": "コ", + "vowel": "o", + "vowelLength": 0.08287608623504639, + }, + { + "pitch": 5.647021293640137, + "text": "ン", + "vowel": "N", + "vowelLength": 0.060083940625190735, + }, + { + "consonant": "y", + "consonantLength": 0.06430384516716003, + "pitch": 5.541888236999512, + "text": "ヤ", + "vowel": "a", + "vowelLength": 0.05147162079811096, + }, + { + "consonant": "w", + "consonantLength": 0.056181102991104126, + "pitch": 5.361285209655762, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.06338833272457123, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.09797464311122894, + "pitch": 5.249889373779297, + "text": "チョ", + "vowel": "o", + "vowelLength": 0.08101139217615128, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.0513511523604393, + }, + { + "consonant": "t", + "consonantLength": 0.048488736152648926, + "pitch": 5.419687271118164, + "text": "ト", + "vowel": "o", + "vowelLength": 0.03886866942048073, + }, + { + "consonant": "sh", + "consonantLength": 0.06485826522111893, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.025310780853033066, + }, + { + "consonant": "t", + "consonantLength": 0.04835810139775276, + "pitch": 5.440497875213623, + "text": "タ", + "vowel": "a", + "vowelLength": 0.05070021003484726, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.06375067681074142, + "pitch": 5.430696487426758, + "text": "サ", + "vowel": "a", + "vowelLength": 0.07233203947544098, + }, + { + "consonant": "p", + "consonantLength": 0.06547503173351288, + "pitch": 5.532147407531738, + "text": "プ", + "vowel": "u", + "vowelLength": 0.03465963900089264, + }, + { + "consonant": "r", + "consonantLength": 0.04039468616247177, + "pitch": 5.494468688964844, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.08774954825639725, + }, + { + "pitch": 5.48780632019043, + "text": "イ", + "vowel": "i", + "vowelLength": 0.055294811725616455, + }, + { + "consonant": "z", + "consonantLength": 0.0752679631114006, + "pitch": 5.369350433349609, + "text": "ズ", + "vowel": "u", + "vowelLength": 0.014213982969522476, + }, + { + "pitch": 5.2985310554504395, + "text": "オ", + "vowel": "o", + "vowelLength": 0.0862073004245758, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.10473042726516724, + "pitch": 5.307175636291504, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.0688057541847229, + }, + { + "pitch": 5.338588237762451, + "text": "オ", + "vowel": "o", + "vowelLength": 0.05640953779220581, + }, + { + "pitch": 5.258040428161621, + "text": "イ", + "vowel": "i", + "vowelLength": 0.060274720191955566, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.06393560022115707, + "pitch": 5.11, + "text": "シ", + "vowel": "i", + "vowelLength": 0.029729405418038368, + }, + { + "consonant": "t", + "consonantLength": 0.03917369991540909, + "pitch": 5.299654006958008, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06260821223258972, + }, + { + "consonant": "r", + "consonantLength": 0.03576516732573509, + "pitch": 5.2854743003845215, + "text": "ル", + "vowel": "u", + "vowelLength": 0.024437298998236656, + }, + { + "consonant": "y", + "consonantLength": 0.11169252544641495, + "pitch": 5.22, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.112, + }, + { + "pitch": 5.27, + "text": "オ", + "vowel": "o", + "vowelLength": 0, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.14452789723873138, + }, + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "t", + "consonantLength": 0.07787123322486877, + "pitch": 5.249192237854004, + "text": "タ", + "vowel": "a", + "vowelLength": 0.040734488517045975, + }, + { + "consonant": "n", + "consonantLength": 0.0719405859708786, + "pitch": 5.351682662963867, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.03875451534986496, + }, + { + "consonant": "sh", + "consonantLength": 0.10032988339662552, + "pitch": 5.529983043670654, + "text": "シ", + "vowel": "i", + "vowelLength": 0.022224588319659233, + }, + { + "consonant": "m", + "consonantLength": 0.05847642943263054, + "pitch": 5.459759712219238, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.02149832248687744, + }, + { + "consonant": "n", + "consonantLength": 0.0719912201166153, + "pitch": 5.284815311431885, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.039113808423280716, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.05865781009197235, + "pitch": 5.18011999130249, + "text": "シ", + "vowel": "i", + "vowelLength": 0.0284238550812006, + }, + { + "consonant": "t", + "consonantLength": 0.034806989133358, + "pitch": 5.16425895690918, + "text": "テ", + "vowel": "e", + "vowelLength": 0.07727346569299698, + }, + { + "consonant": "t", + "consonantLength": 0.04484434425830841, + "pitch": 5.182563781738281, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06417398154735565, + }, + { + "consonant": "n", + "consonantLength": 0.06090983748435974, + "pitch": 5.148528099060059, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.0651804506778717, + }, + { + "pitch": 5.32, + "text": "エ", + "vowel": "e", + "vowelLength": 0.095, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "今夜はちょっとしたサプライズを用意してるよ。楽しみにしててね", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 73, + }, + }, + "caadf97d-af33-4cd4-af37-a9230f58053a": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.02, + "text": "エ", + "vowel": "e", + "vowelLength": 0.08, + }, + { + "pitch": 4.93, + "text": "エ", + "vowel": "e", + "vowelLength": 0.06, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.1159556433558464, + }, + { + "consonant": "t", + "consonantLength": 0.04870312660932541, + "pitch": 5.09, + "text": "ト", + "vowel": "o", + "vowelLength": 0.125, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.41, + }, + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.0637211725115776, + "pitch": 5.09, + "text": "ヘ", + "vowel": "e", + "vowelLength": 0.09031374752521515, + }, + { + "pitch": 5.21, + "text": "ン", + "vowel": "N", + "vowelLength": 0.04064146429300308, + }, + { + "consonant": "ky", + "consonantLength": 0.06764496862888336, + "pitch": 5.2350077629089355, + "text": "キャ", + "vowel": "a", + "vowelLength": 0.07344523072242737, + }, + { + "consonant": "k", + "consonantLength": 0.06023818999528885, + "pitch": 0, + "text": "ク", + "vowel": "U", + "vowelLength": 0.04203638434410095, + }, + { + "consonant": "k", + "consonantLength": 0.07332970947027206, + "pitch": 5.24310827255249, + "text": "キ", + "vowel": "i", + "vowelLength": 0.06683332473039627, + }, + { + "consonant": "g", + "consonantLength": 0.036969877779483795, + "pitch": 5.20208740234375, + "text": "ゲ", + "vowel": "e", + "vowelLength": 0.11431767791509628, + }, + { + "pitch": 5.17, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06549672782421112, + }, + { + "consonant": "g", + "consonantLength": 0.03095272369682789, + "pitch": 5.01, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.07910851389169693, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.11228436976671219, + "pitch": 5.12, + "text": "ス", + "vowel": "u", + "vowelLength": 0.046805694699287415, + }, + { + "consonant": "g", + "consonantLength": 0.04176975041627884, + "pitch": 5.18, + "text": "ギ", + "vowel": "i", + "vowelLength": 0.06572210043668747, + }, + { + "consonant": "t", + "consonantLength": 0.07659592479467392, + "pitch": 5.06, + "text": "テ", + "vowel": "e", + "vowelLength": 0.08494251221418381, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 4.920690059661865, + "text": "イ", + "vowel": "i", + "vowelLength": 0.06299696862697601, + }, + { + "consonant": "r", + "consonantLength": 0.0233475249260664, + "pitch": 4.796213626861572, + "text": "ル", + "vowel": "u", + "vowelLength": 0.061460189521312714, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.0802905336022377, + "pitch": 5.056998043060303, + "text": "ホ", + "vowel": "o", + "vowelLength": 0.10935119539499283, + }, + { + "pitch": 5.03, + "text": "ン", + "vowel": "N", + "vowelLength": 0.07504794746637344, + }, + { + "consonant": "g", + "consonantLength": 0.03549627214670181, + "pitch": 4.793896942138672, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.08482982963323593, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.3, + "text": "イ", + "vowel": "i", + "vowelLength": 0.0461694672703743, + }, + { + "consonant": "k", + "consonantLength": 0.06299655884504318, + "pitch": 0, + "text": "ク", + "vowel": "U", + "vowelLength": 0.03961833566427231, + }, + { + "consonant": "ts", + "consonantLength": 0.09059397876262665, + "pitch": 5.228359317779541, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.03914468735456467, + }, + { + "consonant": "k", + "consonantLength": 0.06731438636779785, + "pitch": 5.144794082641601, + "text": "カ", + "vowel": "a", + "vowelLength": 0.08247392624616623, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "pitch": 4.8311591148376465, + "text": "ア", + "vowel": "a", + "vowelLength": 0.07285666465759277, + }, + { + "consonant": "r", + "consonantLength": 0.02149793691933155, + "pitch": 4.919498443603516, + "text": "リ", + "vowel": "i", + "vowelLength": 0.05344478785991669, + }, + { + "consonant": "m", + "consonantLength": 0.058133289217948914, + "pitch": 5.123996734619141, + "text": "マ", + "vowel": "a", + "vowelLength": 0.08897645026445389, + }, + { + "consonant": "s", + "consonantLength": 0.040159955620765686, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.036482155323028564, + }, + { + "consonant": "n", + "consonantLength": 0.05614689737558365, + "pitch": 5.039660930633545, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.09118020534515381, + }, + { + "consonant": "d", + "consonantLength": 0.04580046236515045, + "pitch": 4.73, + "text": "デ", + "vowel": "e", + "vowelLength": 0.178, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.1316535472869873, + }, + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.03714115917682648, + "pitch": 4.859694957733154, + "text": "ゴ", + "vowel": "o", + "vowelLength": 0.06059059500694275, + }, + { + "consonant": "k", + "consonantLength": 0.06074278801679611, + "pitch": 5.055935382843018, + "text": "カ", + "vowel": "a", + "vowelLength": 0.07084192335605621, + }, + { + "consonant": "k", + "consonantLength": 0.08327913284301758, + "pitch": 5.192704677581787, + "text": "ク", + "vowel": "u", + "vowelLength": 0.0423775389790535, + }, + { + "consonant": "n", + "consonantLength": 0.03943531960248947, + "pitch": 5.158699035644531, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.1025666818022728, + }, + { + "pitch": 5.115257263183594, + "text": "ン", + "vowel": "N", + "vowelLength": 0.04564748704433441, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07351209968328476, + "pitch": 5.19, + "text": "ク", + "vowel": "u", + "vowelLength": 0.043663300573825836, + }, + { + "consonant": "d", + "consonantLength": 0.030061865225434303, + "pitch": 5.11, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.07831891626119614, + }, + { + "consonant": "s", + "consonantLength": 0.10006185621023178, + "pitch": 5.06, + "text": "サ", + "vowel": "a", + "vowelLength": 0.1073092594742775, + }, + { + "pitch": 4.78, + "text": "イ", + "vowel": "i", + "vowelLength": 0.12329130619764328, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "ええっと、返却期限が過ぎている本がいくつかありますので、ご確認ください", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "04dbd989-32d0-40b4-9e71-17c920f2a8a9", + "styleId": 67, + }, + }, + "cb2fe5b1-c56d-40c1-9094-28f3fa9c136d": { + "query": { + "accentPhrases": [ + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.08268705755472183, + "pitch": 3.333299160003662, + "text": "コ", + "vowel": "o", + "vowelLength": 0.08765792101621628, + }, + { + "pitch": 2.810067653656006, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06773354113101959, + }, + { + "consonant": "b", + "consonantLength": 0.05334358289837837, + "pitch": 3.3456950187683105, + "text": "バ", + "vowel": "a", + "vowelLength": 0.11771946400403976, + }, + { + "pitch": 2.6635851860046387, + "text": "ン", + "vowel": "N", + "vowelLength": 0.03888675570487976, + }, + { + "consonant": "w", + "consonantLength": 0.0813429206609726, + "pitch": 3.3221206665039062, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.1401556432247162, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.25533053278923035, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.06674597412347794, + "pitch": 3.516073703765869, + "text": "マ", + "vowel": "a", + "vowelLength": 0.08882008492946625, + }, + { + "pitch": 2.9910006523132324, + "text": "ン", + "vowel": "N", + "vowelLength": 0.059576891362667084, + }, + { + "consonant": "b", + "consonantLength": 0.035521090030670166, + "pitch": 3.4842419624328613, + "text": "ベ", + "vowel": "e", + "vowelLength": 0.07066148519515991, + }, + { + "consonant": "ts", + "consonantLength": 0.06932196766138077, + "pitch": 0, + "text": "ツ", + "vowel": "U", + "vowelLength": 0.03053967095911503, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.06279817968606949, + "pitch": 3.6305770874023438, + "text": "ハ", + "vowel": "a", + "vowelLength": 0.03793724998831749, + }, + { + "consonant": "n", + "consonantLength": 0.0588933601975441, + "pitch": 3.243103504180908, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.046794310212135315, + }, + { + "consonant": "m", + "consonantLength": 0.05699179694056511, + "pitch": 3.776157855987549, + "text": "マ", + "vowel": "a", + "vowelLength": 0.0495627261698246, + }, + { + "consonant": "r", + "consonantLength": 0.058, + "pitch": 3.5420804023742676, + "text": "ル", + "vowel": "u", + "vowelLength": 0.043, + }, + { + "consonant": "d", + "consonantLength": 0.04983953759074211, + "pitch": 3.43, + "text": "デ", + "vowel": "e", + "vowelLength": 0.09374493360519409, + }, + { + "consonant": "s", + "consonantLength": 0.11915169656276703, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.02967422641813755, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "こんばんは、まんべつ花丸です", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 71, + }, + }, + "def18555-b3e2-43c7-87c5-38dbb2d8bd09": { + "query": { + "accentPhrases": [ + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.05003078281879425, + "pitch": 5.677352485656738, + "text": "コ", + "vowel": "o", + "vowelLength": 0.07790499925613403, + }, + { + "consonant": "n", + "consonantLength": 0.05298453941941261, + "pitch": 5.81, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.09057866781949997, + }, + ], + }, + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "b", + "consonantLength": 0.06792835146188736, + "pitch": 5.851619720458984, + "text": "ブ", + "vowel": "u", + "vowelLength": 0.08365930616855621, + }, + { + "pitch": 5.961841583251953, + "text": "イ", + "vowel": "i", + "vowelLength": 0.0996321365237236, + }, + { + "pitch": 5.995906829833984, + "text": "ア", + "vowel": "a", + "vowelLength": 0.09049193561077118, + }, + { + "pitch": 6.06, + "text": "ア", + "vowel": "a", + "vowelLength": 0.10392595827579498, + }, + { + "consonant": "r", + "consonantLength": 0.025022342801094055, + "pitch": 6.08, + "text": "ル", + "vowel": "u", + "vowelLength": 0.07008692622184753, + }, + { + "consonant": "k", + "consonantLength": 0.10791585594415665, + "pitch": 6.077226161956787, + "text": "ク", + "vowel": "u", + "vowelLength": 0.08263100683689117, + }, + { + "pitch": 6.077787399291992, + "text": "ウ", + "vowel": "u", + "vowelLength": 0.07120289653539658, + }, + { + "consonant": "k", + "consonantLength": 0.09432974457740784, + "pitch": 5.802639484405518, + "text": "カ", + "vowel": "a", + "vowelLength": 0.12858448922634125, + }, + { + "pitch": 5.632043838500977, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06086861342191696, + }, + { + "consonant": "w", + "consonantLength": 0.02747742086648941, + "pitch": 5.486605644226074, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.10360294580459595, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.11303596198558807, + "pitch": 5.479257736206055, + "text": "キ", + "vowel": "i", + "vowelLength": 0.04458383098244667, + }, + { + "consonant": "m", + "consonantLength": 0.04386063665151596, + "pitch": 5.639625701904297, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.0719793438911438, + }, + { + "consonant": "n", + "consonantLength": 0.050106409937143326, + "pitch": 6, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.07733213901519775, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.0957648977637291, + "pitch": 6.1, + "text": "ソ", + "vowel": "o", + "vowelLength": 0.06697619706392288, + }, + { + "pitch": 6.107832679748535, + "text": "オ", + "vowel": "o", + "vowelLength": 0.07938472926616669, + }, + { + "consonant": "z", + "consonantLength": 0.07354205846786499, + "pitch": 6.118080387115478, + "text": "ゾ", + "vowel": "o", + "vowelLength": 0.07661642879247665, + }, + { + "pitch": 6.156254062652588, + "text": "オ", + "vowel": "o", + "vowelLength": 0.08533445000648499, + }, + { + "consonant": "ry", + "consonantLength": 0.03291334584355354, + "pitch": 6.070690402984619, + "text": "リョ", + "vowel": "o", + "vowelLength": 0.07897452265024185, + }, + { + "consonant": "k", + "consonantLength": 0.07385428249835968, + "pitch": 5.864714393615722, + "text": "ク", + "vowel": "u", + "vowelLength": 0.046564824879169464, + }, + { + "consonant": "n", + "consonantLength": 0.04805654287338257, + "pitch": 5.7015135383605955, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.0884891152381897, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.04704977944493294, + "pitch": 5.508818626403809, + "text": "ゲ", + "vowel": "e", + "vowelLength": 0.10564245283603668, + }, + { + "pitch": 5.828540802001953, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06801004707813263, + }, + { + "consonant": "k", + "consonantLength": 0.07583320140838623, + "pitch": 5.920133590698242, + "text": "カ", + "vowel": "a", + "vowelLength": 0.10288714617490768, + }, + { + "pitch": 5.98, + "text": "イ", + "vowel": "i", + "vowelLength": 0.07129138708114624, + }, + { + "pitch": 5.97, + "text": "オ", + "vowel": "o", + "vowelLength": 0.08498237282037735, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "t", + "consonantLength": 0.09017559885978699, + "pitch": 5.96, + "text": "タ", + "vowel": "a", + "vowelLength": 0.07249844819307327, + }, + { + "consonant": "m", + "consonantLength": 0.04740377515554428, + "pitch": 6.01, + "text": "メ", + "vowel": "e", + "vowelLength": 0.07495071738958359, + }, + { + "consonant": "s", + "consonantLength": 0.09185490012168884, + "pitch": 5.87, + "text": "ス", + "vowel": "u", + "vowelLength": 0.04906462877988815, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "b", + "consonantLength": 0.04966858774423599, + "pitch": 5.523577690124512, + "text": "バ", + "vowel": "a", + "vowelLength": 0.08931075781583786, + }, + { + "consonant": "sh", + "consonantLength": 0.09208787977695465, + "pitch": 5.71, + "text": "ショ", + "vowel": "o", + "vowelLength": 0.14429764449596405, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.34498345851898193, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "d", + "consonantLength": 0.02002958580851555, + "pitch": 5.88, + "text": "ド", + "vowel": "o", + "vowelLength": 0.12901639938354492, + }, + { + "pitch": 6.206581001281738, + "text": "ン", + "vowel": "N", + "vowelLength": 0.05849570035934448, + }, + { + "consonant": "n", + "consonantLength": 0.032827626913785934, + "pitch": 5.997086410522461, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.07469281554222107, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.0835418626666069, + "pitch": 5.928581237792969, + "text": "セ", + "vowel": "e", + "vowelLength": 0.07325209677219391, + }, + { + "consonant": "k", + "consonantLength": 0.08025221526622772, + "pitch": 5.816367149353027, + "text": "カ", + "vowel": "a", + "vowelLength": 0.09979958087205887, + }, + { + "pitch": 5.634263038635254, + "text": "イ", + "vowel": "i", + "vowelLength": 0.08291219919919968, + }, + { + "pitch": 5.54, + "text": "オ", + "vowel": "o", + "vowelLength": 0.09417117387056351, + }, + ], + }, + { + "accent": 7, + "isInterrogative": false, + "moras": [ + { + "consonant": "ts", + "consonantLength": 0.09965275973081589, + "pitch": 5.46, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.064, + }, + { + "consonant": "k", + "consonantLength": 0.08150392025709152, + "pitch": 5.75, + "text": "ク", + "vowel": "u", + "vowelLength": 0.07114582508802414, + }, + { + "consonant": "r", + "consonantLength": 0.042, + "pitch": 5.98, + "text": "リ", + "vowel": "i", + "vowelLength": 0.11, + }, + { + "pitch": 6.02, + "text": "ア", + "vowel": "a", + "vowelLength": 0.10125593096017838, + }, + { + "consonant": "g", + "consonantLength": 0.045439571142196655, + "pitch": 6.06, + "text": "ゲ", + "vowel": "e", + "vowelLength": 0.09046470373868942, + }, + { + "consonant": "r", + "consonantLength": 0.02389391139149666, + "pitch": 6.06, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.1037195697426796, + }, + { + "consonant": "r", + "consonantLength": 0.02697238326072693, + "pitch": 6.11, + "text": "レ", + "vowel": "e", + "vowelLength": 0.09259022772312164, + }, + { + "consonant": "r", + "consonantLength": 0.0181940495967865, + "pitch": 5.98, + "text": "ル", + "vowel": "u", + "vowelLength": 0.06679324060678482, + }, + { + "consonant": "k", + "consonantLength": 0.07315489649772644, + "pitch": 5.714430427551269, + "text": "カ", + "vowel": "a", + "vowelLength": 0.08799204230308533, + }, + { + "consonant": "n", + "consonantLength": 0.05044468119740486, + "pitch": 5.66, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.13270968198776245, + }, + { + "pitch": 5.91, + "text": "ア", + "vowel": "a", + "vowelLength": 0.101, + }, + ], + }, + ], + "intonationScale": 1.2, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "このVR空間は君の想像力の限界を試す場所。どんな世界を作り上げられるかな?", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "dda44ade-5f9c-4a3a-9d2c-2a976c7476d9", + "styleId": 68, + }, + }, + "e4fc66ad-4db2-4956-bdda-72f05efc0248": { + "query": { + "accentPhrases": [ + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07508257776498795, + "pitch": 5.903140068054199, + "text": "コ", + "vowel": "o", + "vowelLength": 0.10116533935070038, + }, + { + "pitch": 5.951057434082031, + "text": "ン", + "vowel": "N", + "vowelLength": 0.08138551563024521, + }, + { + "consonant": "b", + "consonantLength": 0.045858874917030334, + "pitch": 6.000238418579102, + "text": "バ", + "vowel": "a", + "vowelLength": 0.1359366774559021, + }, + { + "pitch": 5.965575218200684, + "text": "ン", + "vowel": "N", + "vowelLength": 0.04302395135164261, + }, + { + "consonant": "w", + "consonantLength": 0.06383518129587173, + "pitch": 6.07, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.1790064573287964, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.2494262158870697, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.06416910886764526, + "pitch": 5.961981296539307, + "text": "マ", + "vowel": "a", + "vowelLength": 0.10131561011075974, + }, + { + "pitch": 6.172236442565918, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06945346295833588, + }, + { + "consonant": "b", + "consonantLength": 0.03235677629709244, + "pitch": 6.170449256896973, + "text": "ベ", + "vowel": "e", + "vowelLength": 0.08893056213855743, + }, + { + "consonant": "ts", + "consonantLength": 0.05964764207601547, + "pitch": 0, + "text": "ツ", + "vowel": "U", + "vowelLength": 0.03163117170333862, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.05408056452870369, + "pitch": 5.78, + "text": "ハ", + "vowel": "a", + "vowelLength": 0.045926496386528015, + }, + { + "consonant": "n", + "consonantLength": 0.05312614142894745, + "pitch": 5.885628318786621, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.04854470491409302, + }, + { + "consonant": "m", + "consonantLength": 0.05259286239743233, + "pitch": 5.938226795196533, + "text": "マ", + "vowel": "a", + "vowelLength": 0.059728849679231644, + }, + { + "consonant": "r", + "consonantLength": 0.03855948895215988, + "pitch": 5.953022575378418, + "text": "ル", + "vowel": "u", + "vowelLength": 0.04417359083890915, + }, + { + "consonant": "d", + "consonantLength": 0.0420585498213768, + "pitch": 5.965761756896972, + "text": "デ", + "vowel": "e", + "vowelLength": 0.10448451340198517, + }, + { + "consonant": "s", + "consonantLength": 0.09526143968105316, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.04040876775979996, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "こんばんは、まんべつ花丸です", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 72, + }, + }, + "eacdc7eb-1cec-4eaf-a1b9-49468c2be282": { + "query": { + "accentPhrases": [ + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.07705845683813095, + "pitch": 6.053295135498047, + "text": "コ", + "vowel": "o", + "vowelLength": 0.09592189639806747, + }, + { + "pitch": 6.100312232971191, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06901398301124573, + }, + { + "consonant": "y", + "consonantLength": 0.05595069378614426, + "pitch": 6.021935939788818, + "text": "ヤ", + "vowel": "a", + "vowelLength": 0.06411278992891312, + }, + { + "consonant": "w", + "consonantLength": 0.04082420840859413, + "pitch": 5.692396640777588, + "text": "ワ", + "vowel": "a", + "vowelLength": 0.07782924175262451, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.08406206965446472, + "pitch": 5.610958099365234, + "text": "チョ", + "vowel": "o", + "vowelLength": 0.08801018446683884, + }, + { + "pitch": 0, + "text": "ッ", + "vowel": "cl", + "vowelLength": 0.046261195093393326, + }, + { + "consonant": "t", + "consonantLength": 0.04109962284564972, + "pitch": 5.953298568725586, + "text": "ト", + "vowel": "o", + "vowelLength": 0.04674334451556206, + }, + { + "consonant": "sh", + "consonantLength": 0.05273710563778877, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.02780771814286709, + }, + { + "consonant": "t", + "consonantLength": 0.048433735966682434, + "pitch": 6.002956390380859, + "text": "タ", + "vowel": "a", + "vowelLength": 0.06536339223384857, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "s", + "consonantLength": 0.048634275794029236, + "pitch": 5.88108491897583, + "text": "サ", + "vowel": "a", + "vowelLength": 0.08803138881921768, + }, + { + "consonant": "p", + "consonantLength": 0.04753730073571205, + "pitch": 6.0325212478637695, + "text": "プ", + "vowel": "u", + "vowelLength": 0.04015101119875908, + }, + { + "consonant": "r", + "consonantLength": 0.03394661471247673, + "pitch": 6.119943141937256, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.09655022621154785, + }, + { + "pitch": 6.122419357299805, + "text": "イ", + "vowel": "i", + "vowelLength": 0.07347922027111053, + }, + { + "consonant": "z", + "consonantLength": 0.06274926662445068, + "pitch": 6.0337934494018555, + "text": "ズ", + "vowel": "u", + "vowelLength": 0.015528695657849312, + }, + { + "pitch": 5.865401268005371, + "text": "オ", + "vowel": "o", + "vowelLength": 0.09212790429592133, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.09991190582513809, + "pitch": 5.843523979187012, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.06660149246454239, + }, + { + "pitch": 5.994835376739502, + "text": "オ", + "vowel": "o", + "vowelLength": 0.06083100289106369, + }, + { + "pitch": 5.899660110473633, + "text": "イ", + "vowel": "i", + "vowelLength": 0.0765744000673294, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.0592968687415123, + "pitch": 5.672351360321045, + "text": "シ", + "vowel": "i", + "vowelLength": 0.045441098511219025, + }, + { + "consonant": "t", + "consonantLength": 0.03772927075624466, + "pitch": 5.882272243499756, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06506950408220291, + }, + { + "consonant": "r", + "consonantLength": 0.029480306431651115, + "pitch": 5.932898044586182, + "text": "ル", + "vowel": "u", + "vowelLength": 0.04053185135126114, + }, + { + "consonant": "y", + "consonantLength": 0.11203930526971817, + "pitch": 5.95152473449707, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.10124558210372925, + }, + { + "pitch": 6.12, + "text": "オ", + "vowel": "o", + "vowelLength": 0.068, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.1363251507282257, + }, + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "t", + "consonantLength": 0.06983751058578491, + "pitch": 5.622869491577148, + "text": "タ", + "vowel": "a", + "vowelLength": 0.04963712766766548, + }, + { + "consonant": "n", + "consonantLength": 0.06343131512403488, + "pitch": 5.896514892578125, + "text": "ノ", + "vowel": "o", + "vowelLength": 0.04378650337457657, + }, + { + "consonant": "sh", + "consonantLength": 0.09063015878200531, + "pitch": 6.1634368896484375, + "text": "シ", + "vowel": "i", + "vowelLength": 0.027772415429353714, + }, + { + "consonant": "m", + "consonantLength": 0.05863633751869202, + "pitch": 6.149779796600342, + "text": "ミ", + "vowel": "i", + "vowelLength": 0.032178621739149094, + }, + { + "consonant": "n", + "consonantLength": 0.06658178567886353, + "pitch": 6.020265579223633, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.05141559988260269, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.05413348972797394, + "pitch": 5.976080894470215, + "text": "シ", + "vowel": "i", + "vowelLength": 0.04424595087766647, + }, + { + "consonant": "t", + "consonantLength": 0.03307562321424484, + "pitch": 6.051526069641113, + "text": "テ", + "vowel": "e", + "vowelLength": 0.08225764334201813, + }, + { + "consonant": "t", + "consonantLength": 0.039867471903562546, + "pitch": 6.030106067657471, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06894996762275696, + }, + { + "consonant": "n", + "consonantLength": 0.05531612038612366, + "pitch": 5.92026948928833, + "text": "ネ", + "vowel": "e", + "vowelLength": 0.0627000480890274, + }, + { + "pitch": 6.12, + "text": "エ", + "vowel": "e", + "vowelLength": 0.061, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "今夜はちょっとしたサプライズを用意してるよ。楽しみにしててね", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 72, + }, + }, + "ef8165b5-55e9-4614-a91a-cab624f04677": { + "query": { + "accentPhrases": [ + { + "accent": 8, + "isInterrogative": false, + "moras": [ + { + "pitch": 4.92, + "text": "オ", + "vowel": "o", + "vowelLength": 0.12312895804643631, + }, + { + "consonant": "h", + "consonantLength": 0.06004456430673599, + "pitch": 5.125402927398682, + "text": "ハ", + "vowel": "a", + "vowelLength": 0.09011493623256683, + }, + { + "consonant": "y", + "consonantLength": 0.04803074151277542, + "pitch": 5.222829341888428, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.09215085953474045, + }, + { + "pitch": 5.222437858581543, + "text": "オ", + "vowel": "o", + "vowelLength": 0.051912203431129456, + }, + { + "consonant": "g", + "consonantLength": 0.044495515525341034, + "pitch": 5.194443702697754, + "text": "ゴ", + "vowel": "o", + "vowelLength": 0.07315398007631302, + }, + { + "consonant": "z", + "consonantLength": 0.061576202511787415, + "pitch": 5.181742191314697, + "text": "ザ", + "vowel": "a", + "vowelLength": 0.09415823966264725, + }, + { + "pitch": 5.216516971588135, + "text": "イ", + "vowel": "i", + "vowelLength": 0.045322299003601074, + }, + { + "consonant": "m", + "consonantLength": 0.056771934032440186, + "pitch": 5.179596900939941, + "text": "マ", + "vowel": "a", + "vowelLength": 0.1019710823893547, + }, + { + "consonant": "s", + "consonantLength": 0.057, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.025, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.35, + }, + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.04374498873949051, + "pitch": 5.32154655456543, + "text": "ク", + "vowel": "u", + "vowelLength": 0.03659426420927048, + }, + { + "consonant": "r", + "consonantLength": 0.025918858125805855, + "pitch": 5.283809185028076, + "text": "リ", + "vowel": "i", + "vowelLength": 0.05953502655029297, + }, + { + "consonant": "t", + "consonantLength": 0.06274077296257019, + "pitch": 5.035299777984619, + "text": "タ", + "vowel": "a", + "vowelLength": 0.0712553858757019, + }, + ], + }, + { + "accent": 1, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.049445100128650665, + "pitch": 4.8893351554870605, + "text": "マ", + "vowel": "a", + "vowelLength": 0.07944680005311966, + }, + { + "consonant": "r", + "consonantLength": 0.02798963524401188, + "pitch": 4.995798587799072, + "text": "ロ", + "vowel": "o", + "vowelLength": 0.11147584766149521, + }, + { + "pitch": 4.939995765686035, + "text": "ン", + "vowel": "N", + "vowelLength": 0.0606534481048584, + }, + { + "consonant": "d", + "consonantLength": 0.031415872275829315, + "pitch": 4.751269340515137, + "text": "デ", + "vowel": "e", + "vowelLength": 0.10139567404985428, + }, + { + "consonant": "s", + "consonantLength": 0.073, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.058, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "おはようございます、栗田まろんです", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "04dbd989-32d0-40b4-9e71-17c920f2a8a9", + "styleId": 67, + }, + }, + "f0115afa-9cfd-4846-adeb-d2943535dc6d": { + "query": { + "accentPhrases": [ + { + "accent": 6, + "isInterrogative": false, + "moras": [ + { + "consonant": "g", + "consonantLength": 0.05346006900072098, + "pitch": 5.412835121154785, + "text": "ギ", + "vowel": "i", + "vowelLength": 0.08021187782287598, + }, + { + "consonant": "j", + "consonantLength": 0.057839058339595795, + "pitch": 5.582723140716553, + "text": "ジュ", + "vowel": "u", + "vowelLength": 0.05185944586992264, + }, + { + "consonant": "ts", + "consonantLength": 0.04941634088754654, + "pitch": 5.777100563049316, + "text": "ツ", + "vowel": "u", + "vowelLength": 0.03995528817176819, + }, + { + "consonant": "t", + "consonantLength": 0.037193331867456436, + "pitch": 5.888389587402344, + "text": "テ", + "vowel": "e", + "vowelLength": 0.06952406466007233, + }, + { + "consonant": "k", + "consonantLength": 0.04036492854356766, + "pitch": 5.926358222961426, + "text": "キ", + "vowel": "i", + "vowelLength": 0.04443999379873276, + }, + { + "consonant": "n", + "consonantLength": 0.04358777403831482, + "pitch": 5.8891377449035645, + "text": "ナ", + "vowel": "a", + "vowelLength": 0.06334692239761353, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "m", + "consonantLength": 0.0635465756058693, + "pitch": 5.87, + "text": "モ", + "vowel": "o", + "vowelLength": 0.07381409406661987, + }, + { + "pitch": 5.9, + "text": "ン", + "vowel": "N", + "vowelLength": 0.06499262154102325, + }, + { + "consonant": "d", + "consonantLength": 0.026396043598651886, + "pitch": 5.92, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.0801769569516182, + }, + { + "pitch": 5.94, + "text": "イ", + "vowel": "i", + "vowelLength": 0.04719327390193939, + }, + { + "consonant": "n", + "consonantLength": 0.07145300507545471, + "pitch": 5.93, + "text": "ニ", + "vowel": "i", + "vowelLength": 0.04537564888596535, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "y", + "consonantLength": 0.0514354445040226, + "pitch": 5.9, + "text": "ヨ", + "vowel": "o", + "vowelLength": 0.03253107890486717, + }, + { + "consonant": "r", + "consonantLength": 0.04380873590707779, + "pitch": 5.91, + "text": "リ", + "vowel": "i", + "vowelLength": 0.06847888231277466, + }, + ], + }, + { + "accent": 5, + "isInterrogative": false, + "moras": [ + { + "consonant": "h", + "consonantLength": 0.05036851763725281, + "pitch": 5.74, + "text": "ホ", + "vowel": "o", + "vowelLength": 0.05979914963245392, + }, + { + "pitch": 5.791099624633789, + "text": "オ", + "vowel": "o", + "vowelLength": 0.06467461585998535, + }, + { + "consonant": "s", + "consonantLength": 0.08488987386226654, + "pitch": 5.874947624206543, + "text": "ソ", + "vowel": "o", + "vowelLength": 0.07289652526378632, + }, + { + "pitch": 5.8831930923461915, + "text": "オ", + "vowel": "o", + "vowelLength": 0.06312987208366394, + }, + { + "consonant": "g", + "consonantLength": 0.04623909294605255, + "pitch": 5.8468771743774415, + "text": "ガ", + "vowel": "a", + "vowelLength": 0.08162958174943924, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.6865692138671875, + "text": "イ", + "vowel": "i", + "vowelLength": 0.07844676077365875, + }, + { + "consonant": "ch", + "consonantLength": 0.06216222047805786, + "pitch": 5.879273414611816, + "text": "チ", + "vowel": "i", + "vowelLength": 0.04444136470556259, + }, + { + "consonant": "j", + "consonantLength": 0.05845770984888077, + "pitch": 5.667557239532471, + "text": "ジ", + "vowel": "i", + "vowelLength": 0.07585853338241577, + }, + ], + }, + { + "accent": 4, + "isInterrogative": false, + "moras": [ + { + "consonant": "ch", + "consonantLength": 0.061870232224464417, + "pitch": 5.646772384643555, + "text": "チュ", + "vowel": "u", + "vowelLength": 0.07113678008317947, + }, + { + "pitch": 5.75, + "text": "ウ", + "vowel": "u", + "vowelLength": 0.05040760338306427, + }, + { + "consonant": "d", + "consonantLength": 0.02992151491343975, + "pitch": 5.77, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.11211942136287689, + }, + { + "pitch": 5.696756362915039, + "text": "ン", + "vowel": "N", + "vowelLength": 0.038685284554958344, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.057339105755090714, + "pitch": 0, + "text": "シ", + "vowel": "I", + "vowelLength": 0.029099976643919945, + }, + { + "consonant": "t", + "consonantLength": 0.03959987685084343, + "pitch": 5.79, + "text": "テ", + "vowel": "e", + "vowelLength": 0.05351673811674118, + }, + ], + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.75, + "text": "イ", + "vowel": "i", + "vowelLength": 0.07422114908695221, + }, + { + "consonant": "m", + "consonantLength": 0.05458077788352966, + "pitch": 5.79, + "text": "マ", + "vowel": "a", + "vowelLength": 0.09536688029766083, + }, + { + "consonant": "s", + "consonantLength": 0.10017852485179901, + "pitch": 0, + "text": "ス", + "vowel": "U", + "vowelLength": 0.07435192167758942, + }, + ], + "pauseMora": { + "pitch": 0, + "text": "、", + "vowel": "pau", + "vowelLength": 0.32219791412353516, + }, + }, + { + "accent": 2, + "isInterrogative": false, + "moras": [ + { + "consonant": "sh", + "consonantLength": 0.08056408911943436, + "pitch": 5.48444938659668, + "text": "シ", + "vowel": "i", + "vowelLength": 0.03086593933403492, + }, + { + "consonant": "b", + "consonantLength": 0.04939471557736397, + "pitch": 5.719118118286133, + "text": "バ", + "vowel": "a", + "vowelLength": 0.06272922456264496, + }, + { + "consonant": "r", + "consonantLength": 0.0301495473831892, + "pitch": 5.950966835021973, + "text": "ラ", + "vowel": "a", + "vowelLength": 0.10013158619403839, + }, + { + "consonant": "k", + "consonantLength": 0.044680155813694, + "pitch": 5.699976921081543, + "text": "ク", + "vowel": "u", + "vowelLength": 0.02553710713982582, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "pitch": 5.44947624206543, + "text": "オ", + "vowel": "o", + "vowelLength": 0.09602510184049606, + }, + { + "consonant": "m", + "consonantLength": 0.06377516686916351, + "pitch": 5.4352312088012695, + "text": "マ", + "vowel": "a", + "vowelLength": 0.07268076390028, + }, + { + "consonant": "ch", + "consonantLength": 0.06867891550064087, + "pitch": 0, + "text": "チ", + "vowel": "I", + "vowelLength": 0.030806006863713264, + }, + ], + }, + { + "accent": 3, + "isInterrogative": false, + "moras": [ + { + "consonant": "k", + "consonantLength": 0.039628077298402786, + "pitch": 5.678490161895752, + "text": "ク", + "vowel": "u", + "vowelLength": 0.03701643645763397, + }, + { + "consonant": "d", + "consonantLength": 0.0397738479077816, + "pitch": 5.661993026733398, + "text": "ダ", + "vowel": "a", + "vowelLength": 0.09577575325965881, + }, + { + "consonant": "s", + "consonantLength": 0.07556263357400894, + "pitch": 5.771093845367432, + "text": "サ", + "vowel": "a", + "vowelLength": 0.13321416079998016, + }, + { + "pitch": 5.508612632751465, + "text": "イ", + "vowel": "i", + "vowelLength": 0.16159474849700928, + }, + ], + }, + ], + "intonationScale": 1, + "kana": "", + "outputSamplingRate": 24000, + "outputStereo": false, + "pauseLengthScale": 1, + "pitchScale": 0, + "postPhonemeLength": 0.1, + "prePhonemeLength": 0.1, + "speedScale": 1, + "volumeScale": 1, + }, + "text": "技術的な問題により放送が一時中断しています、しばらくお待ち下さい", + "voice": { + "engineId": "074fc39e-678b-4c13-8916-ffca8d505d1d", + "speakerId": "287aa49f-e56b-4530-a469-855776c84a8d", + "styleId": 69, + }, + }, + }, + "audioKeys": [ + "ef8165b5-55e9-4614-a91a-cab624f04677", + "0c29503e-174f-4734-991a-b878da6264bd", + "caadf97d-af33-4cd4-af37-a9230f58053a", + "2add7ff5-0dfc-48b9-8aca-499c844afc30", + "def18555-b3e2-43c7-87c5-38dbb2d8bd09", + "7fa5212d-361a-4a05-8841-f2ec994859a4", + "073844d5-795b-4228-a93a-7e7cda9f22d5", + "f0115afa-9cfd-4846-adeb-d2943535dc6d", + "6a255bc3-ab1f-4ff6-b83f-57b369778c84", + "b7413df6-dcef-4da5-9592-57745998434e", + "c86dd3dc-5469-4ef2-a6e6-c7820d948827", + "14177923-b252-4e7e-a2b4-f94d077d831c", + "cb2fe5b1-c56d-40c1-9094-28f3fa9c136d", + "08b5e92c-4c57-4274-972b-0a3b3663180f", + "944df35e-88e4-42ba-bfc5-3961085e0872", + "e4fc66ad-4db2-4956-bdda-72f05efc0248", + "2c44cf99-542d-4644-bd1f-f1734334d4b2", + "eacdc7eb-1cec-4eaf-a1b9-49468c2be282", + "ab8856e4-de32-442c-b924-3c5bbc34109d", + "5f4f2dba-d5bf-4841-a8b5-92d2d363d36f", + "c9a4b40d-791a-4b6e-868c-709ad32547be", + "be555d00-138d-4056-9c59-e0238b47501e", + "a2b69df2-7bcb-4bca-a7b5-fa50c3a6172a", + "232a6713-10f9-4960-a885-b7273ad6e3a4", + ], + }, +} +`; diff --git a/tests/unit/domain/project.node.spec.ts b/tests/unit/domain/project.spec.ts similarity index 82% rename from tests/unit/domain/project.node.spec.ts rename to tests/unit/domain/project.spec.ts index 799a050ffc..c9d85555ab 100644 --- a/tests/unit/domain/project.node.spec.ts +++ b/tests/unit/domain/project.spec.ts @@ -1,14 +1,17 @@ -// テスト用のファイルを読み込むのでNode環境で実行する - import path from "path"; import fs from "fs"; import { migrateProjectFileObject } from "@/domain/project"; import { EngineId, SpeakerId, StyleId } from "@/type/preload"; +import { resetMockMode } from "@/helpers/random"; const engineId = EngineId("074fc39e-678b-4c13-8916-ffca8d505d1d"); const vvprojDir = "tests/unit/domain/vvproj/"; +beforeEach(() => { + resetMockMode(); +}); + describe("migrateProjectFileObject", () => { test("v0.14.11", async () => { // 8期生のプロジェクトファイル @@ -17,7 +20,8 @@ describe("migrateProjectFileObject", () => { fs.readFileSync(vvprojFile, "utf-8"), ); - await migrateProjectFileObject(projectData, { + // マイグレーションのテスト + const project = await migrateProjectFileObject(projectData, { fetchMoraData: async () => { throw new Error("fetchMoraData is not implemented"); }, @@ -44,5 +48,8 @@ describe("migrateProjectFileObject", () => { }, ], }); + + // スナップショットテスト + expect(project).toMatchSnapshot(); }); }); diff --git a/tests/unit/domain/sing/shouldPlayTracks.spec.ts b/tests/unit/domain/sing/shouldPlayTracks.spec.ts index 0dd166a18e..a019dfc198 100644 --- a/tests/unit/domain/sing/shouldPlayTracks.spec.ts +++ b/tests/unit/domain/sing/shouldPlayTracks.spec.ts @@ -1,3 +1,4 @@ +import { uuid4 } from "@/helpers/random"; import { createDefaultTrack, shouldPlayTracks } from "@/sing/domain"; import { Track } from "@/store/type"; import { TrackId } from "@/type/preload"; @@ -10,7 +11,7 @@ const createTrack = ({ solo, mute }: { solo: boolean; mute: boolean }) => { }; const toTracksMap = (tracks: Track[]) => { return tracks.reduce((acc, track) => { - acc.set(TrackId(crypto.randomUUID()), track); + acc.set(TrackId(uuid4()), track); return acc; }, new Map()); };