From ef9f3cf0150c83d93d995555867d3e23aaab9e75 Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Wed, 18 Feb 2026 18:36:48 +0900 Subject: [PATCH 1/6] changelog --- .../web/content/changelog/1.0.8-nightly.1.mdx | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 apps/web/content/changelog/1.0.8-nightly.1.mdx diff --git a/apps/web/content/changelog/1.0.8-nightly.1.mdx b/apps/web/content/changelog/1.0.8-nightly.1.mdx new file mode 100644 index 0000000000..48dfad9b48 --- /dev/null +++ b/apps/web/content/changelog/1.0.8-nightly.1.mdx @@ -0,0 +1,25 @@ +--- +date: "2026-02-18" +--- + +## Transcription + +- Fix bugs where meta-models (e.g. `cloud`) were incorrectly validated against a specific provider — provider routing is now resolved server-side based on language support +- Improved language-aware provider selection: the best STT backend (Deepgram vs. Soniox) is now chosen automatically per language + +## AI + +- AI model selectors now filter out deprecated models (GPT-3.5, Claude 2, etc.), date-snapshot versions, and non-chat models (codex, moderation, realtime) +- Local provider connection status (Ollama, LM Studio) is now shown with visual indicators — model selection is disabled when the provider is not running + +## Calendar + +- Improve participant email resolution for Apple Calendar events with a better fallback chain (email → contact → URL → name) + +## Other fixes and improvements + +- Fix `Cmd+Q` quit behavior — now triggers on keydown instead of keyup for more predictable behavior +- Status banner position adjusts dynamically based on timeline visibility +- Profile avatars now use [Facehash](https://github.com/flutterando/facehash)-generated faces +- Fix hover jump on interactive buttons caused by gradient backgrounds +- Remove contacts permission request from onboarding From f2a45b80f050849195988f6d8dd79a452fa8ae5e Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Wed, 18 Feb 2026 18:38:19 +0900 Subject: [PATCH 2/6] refactor: move TranscriptAccumulator to shared crate, migrate batch streaming path - Extract `TranscriptAccumulator`, `TranscriptWord`, `TranscriptUpdate` from `plugins/listener` into new `crates/transcript` shared crate; both listener plugins depend on it - Live streaming path already uses the accumulator via `transcript_update` event - Batch streaming path (`plugin-listener2`) now also runs responses through the accumulator: `BatchEvent::BatchTranscriptWords` carries `Vec` instead of a raw `StreamResponse` - `handleBatchResponseStreamed` in TS now accepts `TranscriptWord[]` directly, eliminating `transformWordEntries` from the hot path - `utils.ts` / `transformWordEntries` retained only for the non-streaming `BatchResponse` path (ext.rs / Argmax single-shot API) Co-authored-by: Cursor --- Cargo.lock | 13 + Cargo.toml | 1 + .../note-input/transcript/shared/index.tsx | 48 +- apps/desktop/src/hooks/useRunBatch.ts | 8 +- apps/desktop/src/hooks/useStartListening.ts | 66 +- .../src/store/zustand/listener/batch.ts | 53 +- .../store/zustand/listener/general.test.ts | 60 +- .../src/store/zustand/listener/general.ts | 15 +- .../store/zustand/listener/transcript.test.ts | 301 +- .../src/store/zustand/listener/transcript.ts | 208 +- crates/transcript/Cargo.toml | 14 + crates/transcript/src/accumulator/channel.rs | 58 + .../src/accumulator/fixtures/deepgram_1.json | 2899 +++ .../src/accumulator/fixtures/soniox_1.json | 21092 ++++++++++++++++ crates/transcript/src/accumulator/mod.rs | 432 + crates/transcript/src/accumulator/words.rs | 385 + crates/transcript/src/lib.rs | 1 + plugins/listener/Cargo.toml | 2 + plugins/listener/js/bindings.gen.ts | 430 +- plugins/listener/src/actors/listener/mod.rs | 26 + plugins/listener/src/events.rs | 8 + plugins/listener2/Cargo.toml | 1 + plugins/listener2/js/bindings.gen.ts | 10 +- plugins/listener2/src/batch.rs | 39 +- plugins/listener2/src/events.rs | 6 +- 25 files changed, 25406 insertions(+), 770 deletions(-) create mode 100644 crates/transcript/Cargo.toml create mode 100644 crates/transcript/src/accumulator/channel.rs create mode 100644 crates/transcript/src/accumulator/fixtures/deepgram_1.json create mode 100644 crates/transcript/src/accumulator/fixtures/soniox_1.json create mode 100644 crates/transcript/src/accumulator/mod.rs create mode 100644 crates/transcript/src/accumulator/words.rs create mode 100644 crates/transcript/src/lib.rs diff --git a/Cargo.lock b/Cargo.lock index f3bd5a63a9..e65aac3807 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -18930,6 +18930,7 @@ dependencies = [ "tokio-stream", "tokio-util", "tracing", + "transcript", "url", "uuid", "vad-ext", @@ -18961,6 +18962,7 @@ dependencies = [ "tokio", "tokio-stream", "tracing", + "transcript", ] [[package]] @@ -20989,6 +20991,17 @@ dependencies = [ "ws-utils", ] +[[package]] +name = "transcript" +version = "0.1.0" +dependencies = [ + "owhisper-interface", + "serde", + "serde_json", + "specta", + "uuid", +] + [[package]] name = "transpose" version = "0.2.3" diff --git a/Cargo.toml b/Cargo.toml index 7f30792e2d..b4d6176271 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -112,6 +112,7 @@ hypr-transcribe-moonshine = { path = "crates/transcribe-moonshine", package = "t hypr-transcribe-openai = { path = "crates/transcribe-openai", package = "transcribe-openai" } hypr-transcribe-proxy = { path = "crates/transcribe-proxy", package = "transcribe-proxy" } hypr-transcribe-whisper-local = { path = "crates/transcribe-whisper-local", package = "transcribe-whisper-local" } +hypr-transcript = { path = "crates/transcript", package = "transcript" } hypr-turso = { path = "crates/turso", package = "turso" } hypr-vad-ext = { path = "crates/vad-ext", package = "vad-ext" } hypr-vad2 = { path = "crates/vad2", package = "vad2" } diff --git a/apps/desktop/src/components/main/body/sessions/note-input/transcript/shared/index.tsx b/apps/desktop/src/components/main/body/sessions/note-input/transcript/shared/index.tsx index 94eea4354d..9655330f0f 100644 --- a/apps/desktop/src/components/main/body/sessions/note-input/transcript/shared/index.tsx +++ b/apps/desktop/src/components/main/body/sessions/note-input/transcript/shared/index.tsx @@ -1,9 +1,8 @@ import { TriangleAlert } from "lucide-react"; -import { type RefObject, useCallback, useMemo, useRef, useState } from "react"; +import { type RefObject, useCallback, useRef, useState } from "react"; import { useHotkeys } from "react-hotkeys-hook"; import type { DegradedError } from "@hypr/plugin-listener"; -import type { RuntimeSpeakerHint } from "@hypr/transcript"; import { cn } from "@hypr/utils"; import { useAudioPlayer } from "../../../../../../../contexts/audio-player/provider"; @@ -43,44 +42,7 @@ export function TranscriptContainer({ const editable = sessionMode === "inactive" && Object.keys(operations ?? {}).length > 0; - const partialWordsByChannel = useListener( - (state) => state.partialWordsByChannel, - ); - const partialHintsByChannel = useListener( - (state) => state.partialHintsByChannel, - ); - - const partialWords = useMemo( - () => Object.values(partialWordsByChannel).flat(), - [partialWordsByChannel], - ); - - const partialHints = useMemo(() => { - const channelIndices = Object.keys(partialWordsByChannel) - .map(Number) - .sort((a, b) => a - b); - - const offsetByChannel = new Map(); - let currentOffset = 0; - for (const channelIndex of channelIndices) { - offsetByChannel.set(channelIndex, currentOffset); - currentOffset += partialWordsByChannel[channelIndex]?.length ?? 0; - } - - const reindexedHints: RuntimeSpeakerHint[] = []; - for (const channelIndex of channelIndices) { - const hints = partialHintsByChannel[channelIndex] ?? []; - const offset = offsetByChannel.get(channelIndex) ?? 0; - for (const hint of hints) { - reindexedHints.push({ - ...hint, - wordIndex: hint.wordIndex + offset, - }); - } - } - - return reindexedHints; - }, [partialWordsByChannel, partialHintsByChannel]); + const partialWords = useListener((state) => state.partialWords); const containerRef = useRef(null); const [scrollElement, setScrollElement] = useState( @@ -167,11 +129,7 @@ export function TranscriptContainer({ ? partialWords : [] } - partialHints={ - index === transcriptIds.length - 1 && currentActive - ? partialHints - : [] - } + partialHints={[]} operations={operations} /> {index < transcriptIds.length - 1 && } diff --git a/apps/desktop/src/hooks/useRunBatch.ts b/apps/desktop/src/hooks/useRunBatch.ts index 159b2a7bd4..8086039442 100644 --- a/apps/desktop/src/hooks/useRunBatch.ts +++ b/apps/desktop/src/hooks/useRunBatch.ts @@ -12,14 +12,14 @@ import { updateTranscriptHints, updateTranscriptWords, } from "../store/transcript/utils"; -import type { HandlePersistCallback } from "../store/zustand/listener/transcript"; +import type { BatchPersistCallback } from "../store/zustand/listener/batch"; import { type Tab, useTabs } from "../store/zustand/tabs"; import { id } from "../utils"; import { useKeywords } from "./useKeywords"; import { useSTTConnection } from "./useSTTConnection"; type RunOptions = { - handlePersist?: HandlePersistCallback; + handlePersist?: BatchPersistCallback; model?: string; baseUrl?: string; apiKey?: string; @@ -99,10 +99,10 @@ export const useRunBatch = (sessionId: string) => { speaker_hints: "[]", }); - const handlePersist: HandlePersistCallback | undefined = + const handlePersist: BatchPersistCallback | undefined = options?.handlePersist; - const persist = + const persist: BatchPersistCallback = handlePersist ?? ((words, hints) => { if (words.length === 0) { diff --git a/apps/desktop/src/hooks/useStartListening.ts b/apps/desktop/src/hooks/useStartListening.ts index ca3c1f1d19..ae064e6edd 100644 --- a/apps/desktop/src/hooks/useStartListening.ts +++ b/apps/desktop/src/hooks/useStartListening.ts @@ -1,6 +1,7 @@ import { useCallback } from "react"; import { commands as analyticsCommands } from "@hypr/plugin-analytics"; +import type { TranscriptWord } from "@hypr/plugin-listener"; import { useConfigValue } from "../config/use-config"; import { useListener } from "../contexts/listener"; @@ -55,7 +56,7 @@ export function useStartListening(sessionId: string) { stt_model: conn.model, }); - const handlePersist: HandlePersistCallback = (words, hints) => { + const handlePersist: HandlePersistCallback = (words: TranscriptWord[]) => { if (words.length === 0) { return; } @@ -64,49 +65,26 @@ export function useStartListening(sessionId: string) { const existingWords = parseTranscriptWords(store, transcriptId); const existingHints = parseTranscriptHints(store, transcriptId); - const newWords: WordWithId[] = []; - const newWordIds: string[] = []; - - words.forEach((word) => { - const wordId = id(); - - newWords.push({ - id: wordId, - text: word.text, - start_ms: word.start_ms, - end_ms: word.end_ms, - channel: word.channel, - }); - - newWordIds.push(wordId); - }); - - const newHints: SpeakerHintWithId[] = []; - - if (conn.provider === "deepgram") { - hints.forEach((hint) => { - if (hint.data.type !== "provider_speaker_index") { - return; - } - - const wordId = newWordIds[hint.wordIndex]; - const word = words[hint.wordIndex]; - if (!wordId || !word) { - return; - } - - newHints.push({ - id: id(), - word_id: wordId, - type: "provider_speaker_index", - value: JSON.stringify({ - provider: hint.data.provider ?? conn.provider, - channel: hint.data.channel ?? word.channel, - speaker_index: hint.data.speaker_index, - }), - }); - }); - } + const newWords: WordWithId[] = words.map((w) => ({ + id: w.id, + text: w.text, + start_ms: w.start_ms, + end_ms: w.end_ms, + channel: w.channel, + })); + + const newHints: SpeakerHintWithId[] = words + .filter((w) => w.speaker !== null) + .map((w) => ({ + id: id(), + word_id: w.id, + type: "provider_speaker_index", + value: JSON.stringify({ + provider: conn.provider, + channel: w.channel, + speaker_index: w.speaker, + }), + })); updateTranscriptWords(store, transcriptId, [ ...existingWords, diff --git a/apps/desktop/src/store/zustand/listener/batch.ts b/apps/desktop/src/store/zustand/listener/batch.ts index 2f7ef0f9c5..b2f160f354 100644 --- a/apps/desktop/src/store/zustand/listener/batch.ts +++ b/apps/desktop/src/store/zustand/listener/batch.ts @@ -1,15 +1,20 @@ import type { StoreApi } from "zustand"; -import type { BatchResponse, StreamResponse } from "@hypr/plugin-listener2"; +import type { BatchResponse } from "@hypr/plugin-listener2"; +import type { TranscriptWord } from "@hypr/plugin-listener2"; import { ChannelProfile, type RuntimeSpeakerHint, type WordLike, } from "../../../utils/segment"; -import type { HandlePersistCallback } from "./transcript"; import { transformWordEntries } from "./utils"; +export type BatchPersistCallback = ( + words: WordLike[], + hints: RuntimeSpeakerHint[], +) => void; + export type BatchPhase = "importing" | "transcribing"; export type BatchState = { @@ -22,7 +27,7 @@ export type BatchState = { phase?: BatchPhase; } >; - batchPersist: Record; + batchPersist: Record; }; export type BatchActions = { @@ -30,12 +35,12 @@ export type BatchActions = { handleBatchResponse: (sessionId: string, response: BatchResponse) => void; handleBatchResponseStreamed: ( sessionId: string, - response: StreamResponse, + words: TranscriptWord[], percentage: number, ) => void; handleBatchFailed: (sessionId: string, error: string) => void; clearBatchSession: (sessionId: string) => void; - setBatchPersist: (sessionId: string, callback: HandlePersistCallback) => void; + setBatchPersist: (sessionId: string, callback: BatchPersistCallback) => void; clearBatchPersist: (sessionId: string) => void; }; @@ -83,27 +88,31 @@ export const createBatchSlice = ( }); }, - handleBatchResponseStreamed: (sessionId, response, percentage) => { + handleBatchResponseStreamed: (sessionId, words, percentage) => { const persist = get().batchPersist[sessionId]; - if (persist && response.type === "Results") { - const channelIndex = response.channel_index[0]; - const alternative = response.channel.alternatives[0]; - - if (channelIndex !== undefined && alternative) { - const [words, hints] = transformWordEntries( - alternative.words, - alternative.transcript, - channelIndex, - ); - - if (words.length > 0) { - persist(words, hints); - } - } + if (persist && words.length > 0) { + const wordLikes: WordLike[] = words.map((w) => ({ + text: w.text, + start_ms: w.start_ms, + end_ms: w.end_ms, + channel: w.channel, + })); + + const hints: RuntimeSpeakerHint[] = words + .filter((w) => w.speaker !== null) + .map((w, i) => ({ + wordIndex: i, + data: { + type: "provider_speaker_index" as const, + speaker_index: w.speaker!, + }, + })); + + persist(wordLikes, hints); } - const isComplete = response.type === "Results" && response.from_finalize; + const isComplete = percentage >= 1; set((state) => ({ ...state, diff --git a/apps/desktop/src/store/zustand/listener/general.test.ts b/apps/desktop/src/store/zustand/listener/general.test.ts index 6ed7331a69..38a9c785c0 100644 --- a/apps/desktop/src/store/zustand/listener/general.test.ts +++ b/apps/desktop/src/store/zustand/listener/general.test.ts @@ -39,35 +39,7 @@ describe("General Listener Slice", () => { const sessionId = "session-456"; const { handleBatchResponseStreamed, getSessionMode } = store.getState(); - const mockResponse = { - type: "Results" as const, - start: 0, - duration: 5, - is_final: false, - speech_final: false, - from_finalize: false, - channel: { - alternatives: [ - { - transcript: "test", - words: [], - confidence: 0.9, - }, - ], - }, - metadata: { - request_id: "test-request", - model_info: { - name: "test-model", - version: "1.0", - arch: "test-arch", - }, - model_uuid: "test-uuid", - }, - channel_index: [0], - }; - - handleBatchResponseStreamed(sessionId, mockResponse, 0.5); + handleBatchResponseStreamed(sessionId, [], 0.5); expect(getSessionMode(sessionId)).toBe("running_batch"); }); }); @@ -78,35 +50,7 @@ describe("General Listener Slice", () => { const { handleBatchResponseStreamed, clearBatchSession } = store.getState(); - const mockResponse = { - type: "Results" as const, - start: 0, - duration: 5, - is_final: false, - speech_final: false, - from_finalize: false, - channel: { - alternatives: [ - { - transcript: "test", - words: [], - confidence: 0.9, - }, - ], - }, - metadata: { - request_id: "test-request", - model_info: { - name: "test-model", - version: "1.0", - arch: "test-arch", - }, - model_uuid: "test-uuid", - }, - channel_index: [0], - }; - - handleBatchResponseStreamed(sessionId, mockResponse, 0.5); + handleBatchResponseStreamed(sessionId, [], 0.5); expect(store.getState().batch[sessionId]).toEqual({ percentage: 0.5, isComplete: false, diff --git a/apps/desktop/src/store/zustand/listener/general.ts b/apps/desktop/src/store/zustand/listener/general.ts index 0936839c9d..2ddad1aedf 100644 --- a/apps/desktop/src/store/zustand/listener/general.ts +++ b/apps/desktop/src/store/zustand/listener/general.ts @@ -15,7 +15,6 @@ import { type SessionLifecycleEvent, type SessionParams, type SessionProgressEvent, - type StreamResponse, } from "@hypr/plugin-listener"; import { type BatchParams, @@ -26,7 +25,7 @@ import { commands as settingsCommands } from "@hypr/plugin-settings"; import { fromResult } from "../../../effect"; import { buildSessionPath } from "../../tinybase/persister/shared/paths"; -import type { BatchActions, BatchState } from "./batch"; +import type { BatchActions, BatchPersistCallback, BatchState } from "./batch"; import type { HandlePersistCallback, TranscriptActions } from "./transcript"; type LiveSessionStatus = "inactive" | "active" | "finalizing"; @@ -65,7 +64,7 @@ export type GeneralActions = { setMuted: (value: boolean) => void; runBatch: ( params: BatchParams, - options?: { handlePersist?: HandlePersistCallback; sessionId?: string }, + options?: { handlePersist?: BatchPersistCallback; sessionId?: string }, ) => Promise; getSessionMode: (sessionId: string) => SessionMode; }; @@ -311,9 +310,11 @@ export const createGeneralSlice = < }; }), ); - } else if (payload.type === "stream_response") { - const response = payload.response; - get().handleTranscriptResponse(response as unknown as StreamResponse); + } else if (payload.type === "transcript_update") { + get().handleTranscriptUpdate( + payload.new_final_words, + payload.partial_words, + ); } else if (payload.type === "mic_muted") { set((state) => mutate(state, (draft) => { @@ -529,7 +530,7 @@ export const createGeneralSlice = < if (payload.type === "batchProgress") { get().handleBatchResponseStreamed( sessionId, - payload.response, + payload.words, payload.percentage, ); diff --git a/apps/desktop/src/store/zustand/listener/transcript.test.ts b/apps/desktop/src/store/zustand/listener/transcript.test.ts index 3f2ae661b6..76dd5e0638 100644 --- a/apps/desktop/src/store/zustand/listener/transcript.test.ts +++ b/apps/desktop/src/store/zustand/listener/transcript.test.ts @@ -1,9 +1,8 @@ -import { afterEach, beforeEach, describe, expect, test, vi } from "vitest"; +import { describe, expect, test, vi } from "vitest"; import { createStore } from "zustand"; -import type { StreamResponse, StreamWord } from "@hypr/plugin-listener"; +import type { TranscriptWord } from "@hypr/plugin-listener"; -import type { RuntimeSpeakerHint, WordLike } from "../../../utils/segment"; import { createTranscriptSlice, type TranscriptActions, @@ -16,262 +15,92 @@ const createTranscriptStore = () => { ); }; -describe("transcript slice", () => { - const defaultWords: StreamWord[] = [ - { - word: "another", - punctuated_word: "Another", - start: 0, - end: 1, - confidence: 1, - speaker: 0, - language: "en", - }, - { - word: "problem", - punctuated_word: "problem", - start: 1, - end: 2, - confidence: 1, - speaker: 1, - language: "en", - }, - ]; - - const createResponse = ({ - words, - transcript, - isFinal, - channelIndex = 0, - }: { - words: StreamWord[]; - transcript: string; - isFinal: boolean; - channelIndex?: number; - }): StreamResponse => { - return { - type: "Results", - start: 0, - duration: 0, - is_final: isFinal, - speech_final: isFinal, - from_finalize: false, - channel_index: [channelIndex], - channel: { - alternatives: [ - { - transcript, - confidence: 1, - words, - }, - ], - }, - metadata: { - request_id: "test", - model_info: { name: "model", version: "1", arch: "cpu" }, - model_uuid: "model", - }, - } satisfies StreamResponse; +function makeWord( + text: string, + start_ms: number, + end_ms: number, + channel = 0, +): TranscriptWord { + return { + id: crypto.randomUUID(), + text, + start_ms, + end_ms, + channel, + speaker: null, }; +} - type TranscriptStore = ReturnType; - let store: TranscriptStore; - - beforeEach(() => { - store = createTranscriptStore(); +describe("transcript slice", () => { + test("handles partial words update", () => { + const store = createTranscriptStore(); + + store + .getState() + .handleTranscriptUpdate( + [], + [makeWord(" Hello", 100, 500), makeWord(" world", 550, 900)], + ); + + const state = store.getState(); + expect(state.partialWords).toHaveLength(2); + expect(state.partialWords.map((w) => w.text)).toEqual([" Hello", " world"]); }); - afterEach(() => { - vi.useRealTimers(); - }); + test("persists final words via callback", () => { + const store = createTranscriptStore(); + const persist = vi.fn(); + store.getState().setTranscriptPersist(persist); - test("stores partial words and hints from streaming updates", () => { - const initialPartial = createResponse({ - words: defaultWords, - transcript: "Another problem", - isFinal: false, - }); + const finals = [makeWord(" Hello", 100, 500), makeWord(" world", 550, 900)]; - store.getState().handleTranscriptResponse(initialPartial); + store.getState().handleTranscriptUpdate(finals, []); - const stateAfterFirst = store.getState(); - const firstChannelWords = stateAfterFirst.partialWordsByChannel[0]; - expect(firstChannelWords).toHaveLength(2); - expect(firstChannelWords?.map((word) => word.text)).toEqual([ - " Another", - " problem", - ]); - expect(stateAfterFirst.partialHintsByChannel[0]).toHaveLength(2); - expect(stateAfterFirst.partialHintsByChannel[0]?.[0]?.wordIndex).toBe(0); - expect(stateAfterFirst.partialHintsByChannel[0]?.[1]?.wordIndex).toBe(1); + expect(persist).toHaveBeenCalledTimes(1); + expect(persist).toHaveBeenCalledWith(finals); + }); - const extendedPartial = createResponse({ - words: [ - ...defaultWords, - { - word: "exists", - punctuated_word: "exists", - start: 2, - end: 3, - confidence: 1, - speaker: 1, - language: "en", - }, - ], - transcript: "Another problem exists", - isFinal: false, - }); + test("does not call persist for empty finals", () => { + const store = createTranscriptStore(); + const persist = vi.fn(); + store.getState().setTranscriptPersist(persist); - store.getState().handleTranscriptResponse(extendedPartial); + store + .getState() + .handleTranscriptUpdate([], [makeWord(" partial", 100, 500)]); - const stateAfterSecond = store.getState(); - const updatedWords = stateAfterSecond.partialWordsByChannel[0]; - expect(updatedWords).toHaveLength(3); - expect(updatedWords?.map((word) => word.text)).toEqual([ - " Another", - " problem", - " exists", - ]); - const channelHints = stateAfterSecond.partialHintsByChannel[0] ?? []; - expect(channelHints).toHaveLength(3); - const lastPartialHint = channelHints[channelHints.length - 1]; - expect(lastPartialHint?.wordIndex).toBe(2); + expect(persist).not.toHaveBeenCalled(); }); - test("persists only new final words", () => { + test("atomic final + partial update", () => { + const store = createTranscriptStore(); const persist = vi.fn(); store.getState().setTranscriptPersist(persist); - const finalResponse = createResponse({ - words: [ - { - word: "hello", - punctuated_word: "Hello", - start: 0, - end: 0.5, - confidence: 1, - speaker: 0, - language: "en", - }, - { - word: "world", - punctuated_word: "world", - start: 0.5, - end: 1.5, - confidence: 1, - speaker: null, - language: "en", - }, - ], - transcript: "Hello world", - isFinal: true, - }); + store + .getState() + .handleTranscriptUpdate( + [makeWord(" Hello", 100, 500)], + [makeWord(" world", 550, 900), makeWord(" how", 950, 1200)], + ); - store.getState().handleTranscriptResponse(finalResponse); expect(persist).toHaveBeenCalledTimes(1); - - const [words, hints] = persist.mock.calls[0] as [ - WordLike[], - RuntimeSpeakerHint[], - ]; - expect(words.map((word) => word.text)).toEqual([" Hello", " world"]); - expect(words.map((word) => word.end_ms)).toEqual([500, 1500]); - expect(hints).toEqual([ - { - data: { type: "provider_speaker_index", speaker_index: 0 }, - wordIndex: 0, - }, - ]); - - store.getState().handleTranscriptResponse(finalResponse); - expect(persist).toHaveBeenCalledTimes(1); - expect(store.getState().finalWordsMaxEndMsByChannel[0]).toBe(1500); + const state = store.getState(); + expect(state.partialWords).toHaveLength(2); + expect(state.partialWords.map((w) => w.text)).toEqual([" world", " how"]); }); - test("adjusts partial hint indices after filtering partial words", () => { + test("reset clears partials and callback", () => { + const store = createTranscriptStore(); const persist = vi.fn(); store.getState().setTranscriptPersist(persist); - const partialResponse = createResponse({ - words: [ - { - word: "hello", - punctuated_word: "Hello", - start: 0, - end: 0.5, - confidence: 1, - speaker: 0, - language: "en", - }, - { - word: "world", - punctuated_word: "world", - start: 0.5, - end: 1.0, - confidence: 1, - speaker: 1, - language: "en", - }, - { - word: "test", - punctuated_word: "test", - start: 1.1, - end: 1.5, - confidence: 1, - speaker: 0, - language: "en", - }, - ], - transcript: "Hello world test", - isFinal: false, - }); - - store.getState().handleTranscriptResponse(partialResponse); - - const stateAfterPartial = store.getState(); - expect(stateAfterPartial.partialWordsByChannel[0]).toHaveLength(3); - expect(stateAfterPartial.partialHintsByChannel[0]).toHaveLength(3); - - const finalResponse = createResponse({ - words: [ - { - word: "hello", - punctuated_word: "Hello", - start: 0, - end: 0.5, - confidence: 1, - speaker: 0, - language: "en", - }, - { - word: "world", - punctuated_word: "world", - start: 0.5, - end: 1.0, - confidence: 1, - speaker: 1, - language: "en", - }, - ], - transcript: "Hello world", - isFinal: true, - }); - - store.getState().handleTranscriptResponse(finalResponse); - - const stateAfterFinal = store.getState(); - const remainingPartialWords = stateAfterFinal.partialWordsByChannel[0]; - const remainingHints = stateAfterFinal.partialHintsByChannel[0] ?? []; - - expect(remainingPartialWords).toHaveLength(1); - expect(remainingPartialWords?.[0]?.text).toBe(" test"); + store.getState().handleTranscriptUpdate([], [makeWord(" hello", 100, 500)]); - expect(remainingHints).toHaveLength(1); - expect(remainingHints[0]?.wordIndex).toBe(0); + store.getState().resetTranscript(); - const hintedWord = - remainingPartialWords?.[remainingHints[0]?.wordIndex ?? -1]; - expect(hintedWord).toBeDefined(); - expect(hintedWord?.text).toBe(" test"); + const state = store.getState(); + expect(state.partialWords).toHaveLength(0); + expect(state.handlePersist).toBeUndefined(); }); }); diff --git a/apps/desktop/src/store/zustand/listener/transcript.ts b/apps/desktop/src/store/zustand/listener/transcript.ts index 6c7858dd56..de201fde85 100644 --- a/apps/desktop/src/store/zustand/listener/transcript.ts +++ b/apps/desktop/src/store/zustand/listener/transcript.ts @@ -1,149 +1,46 @@ import { create as mutate } from "mutative"; import type { StoreApi } from "zustand"; -import type { StreamResponse } from "@hypr/plugin-listener"; +import type { TranscriptWord } from "@hypr/plugin-listener"; -import type { RuntimeSpeakerHint, WordLike } from "../../../utils/segment"; -import { transformWordEntries } from "./utils"; +import type { WordLike } from "../../../utils/segment"; -type WordsByChannel = Record; - -export type HandlePersistCallback = ( - words: WordLike[], - hints: RuntimeSpeakerHint[], -) => void; +export type HandlePersistCallback = (words: TranscriptWord[]) => void; export type TranscriptState = { - finalWordsMaxEndMsByChannel: Record; - partialWordsByChannel: WordsByChannel; - partialHintsByChannel: Record; + partialWords: WordLike[]; handlePersist?: HandlePersistCallback; }; export type TranscriptActions = { setTranscriptPersist: (callback?: HandlePersistCallback) => void; - handleTranscriptResponse: (response: StreamResponse) => void; + handleTranscriptUpdate: ( + newFinalWords: TranscriptWord[], + partialWords: TranscriptWord[], + ) => void; resetTranscript: () => void; }; const initialState: TranscriptState = { - finalWordsMaxEndMsByChannel: {}, - partialWordsByChannel: {}, - partialHintsByChannel: {}, + partialWords: [], handlePersist: undefined, }; +function transcriptWordToWordLike(w: TranscriptWord): WordLike { + return { + text: w.text, + start_ms: w.start_ms, + end_ms: w.end_ms, + channel: w.channel, + }; +} + export const createTranscriptSlice = < T extends TranscriptState & TranscriptActions, >( set: StoreApi["setState"], get: StoreApi["getState"], ): TranscriptState & TranscriptActions => { - const handleFinalWords = ( - channelIndex: number, - words: WordLike[], - hints: RuntimeSpeakerHint[], - ): void => { - const { - partialWordsByChannel, - partialHintsByChannel, - handlePersist, - finalWordsMaxEndMsByChannel, - } = get(); - - const lastPersistedEndMs = finalWordsMaxEndMsByChannel[channelIndex] ?? 0; - const lastEndMs = getLastEndMs(words); - - const firstNewWordIndex = words.findIndex( - (word) => word.end_ms > lastPersistedEndMs, - ); - if (firstNewWordIndex === -1) { - return; - } - - const newWords = words.slice(firstNewWordIndex); - const newHints = hints - .filter((hint) => hint.wordIndex >= firstNewWordIndex) - .map((hint) => ({ - ...hint, - wordIndex: hint.wordIndex - firstNewWordIndex, - })); - - const existingPartialWords = partialWordsByChannel[channelIndex] ?? []; - const remainingPartialWords = existingPartialWords.filter( - (word) => word.start_ms > lastEndMs, - ); - - const oldToNewIndex = new Map(); - let newIdx = 0; - for (let oldIdx = 0; oldIdx < existingPartialWords.length; oldIdx++) { - if (existingPartialWords[oldIdx].start_ms > lastEndMs) { - oldToNewIndex.set(oldIdx, newIdx); - newIdx++; - } - } - - const existingPartialHints = partialHintsByChannel[channelIndex] ?? []; - const remainingPartialHints = existingPartialHints - .filter((hint) => oldToNewIndex.has(hint.wordIndex)) - .map((hint) => ({ - ...hint, - wordIndex: oldToNewIndex.get(hint.wordIndex)!, - })); - - set((state) => - mutate(state, (draft) => { - draft.partialWordsByChannel[channelIndex] = remainingPartialWords; - draft.partialHintsByChannel[channelIndex] = remainingPartialHints; - draft.finalWordsMaxEndMsByChannel[channelIndex] = lastEndMs; - }), - ); - - handlePersist?.(newWords, newHints); - }; - - const handlePartialWords = ( - channelIndex: number, - words: WordLike[], - hints: RuntimeSpeakerHint[], - ): void => { - const { partialWordsByChannel, partialHintsByChannel } = get(); - const existing = partialWordsByChannel[channelIndex] ?? []; - - const firstStartMs = getFirstStartMs(words); - const lastEndMs = getLastEndMs(words); - - const [before, after] = [ - existing.filter((word) => word.end_ms <= firstStartMs), - existing.filter((word) => word.start_ms >= lastEndMs), - ]; - - const newWords = [...before, ...words, ...after]; - - const hintsWithAdjustedIndices = hints.map((hint) => ({ - ...hint, - wordIndex: before.length + hint.wordIndex, - })); - - const existingHints = partialHintsByChannel[channelIndex] ?? []; - const filteredOldHints = existingHints.filter((hint) => { - const word = existing[hint.wordIndex]; - return ( - word && (word.end_ms <= firstStartMs || word.start_ms >= lastEndMs) - ); - }); - - set((state) => - mutate(state, (draft) => { - draft.partialWordsByChannel[channelIndex] = newWords; - draft.partialHintsByChannel[channelIndex] = [ - ...filteredOldHints, - ...hintsWithAdjustedIndices, - ]; - }), - ); - }; - return { ...initialState, setTranscriptPersist: (callback) => { @@ -153,77 +50,26 @@ export const createTranscriptSlice = < }), ); }, - handleTranscriptResponse: (response) => { - if (response.type !== "Results") { - return; - } + handleTranscriptUpdate: (newFinalWords, partialWords) => { + const { handlePersist } = get(); - const channelIndex = response.channel_index[0]; - const alternative = response.channel.alternatives[0]; - if (channelIndex === undefined || !alternative) { - return; + if (newFinalWords.length > 0) { + handlePersist?.(newFinalWords); } - const [words, hints] = transformWordEntries( - alternative.words, - alternative.transcript, - channelIndex, + set((state) => + mutate(state, (draft) => { + draft.partialWords = partialWords.map(transcriptWordToWordLike); + }), ); - if (!words.length) { - return; - } - - if (response.is_final) { - handleFinalWords(channelIndex, words, hints); - } else { - handlePartialWords(channelIndex, words, hints); - } }, resetTranscript: () => { - const { partialWordsByChannel, partialHintsByChannel, handlePersist } = - get(); - - const remainingWords = Object.values(partialWordsByChannel).flat(); - - const channelIndices = Object.keys(partialWordsByChannel) - .map(Number) - .sort((a, b) => a - b); - - const offsetByChannel = new Map(); - let currentOffset = 0; - for (const channelIndex of channelIndices) { - offsetByChannel.set(channelIndex, currentOffset); - currentOffset += partialWordsByChannel[channelIndex]?.length ?? 0; - } - - const remainingHints: RuntimeSpeakerHint[] = []; - for (const channelIndex of channelIndices) { - const hints = partialHintsByChannel[channelIndex] ?? []; - const offset = offsetByChannel.get(channelIndex) ?? 0; - for (const hint of hints) { - remainingHints.push({ - ...hint, - wordIndex: hint.wordIndex + offset, - }); - } - } - - if (remainingWords.length > 0) { - handlePersist?.(remainingWords, remainingHints); - } - set((state) => mutate(state, (draft) => { - draft.partialWordsByChannel = {}; - draft.partialHintsByChannel = {}; - draft.finalWordsMaxEndMsByChannel = {}; + draft.partialWords = []; draft.handlePersist = undefined; }), ); }, }; }; - -const getLastEndMs = (words: WordLike[]): number => - words[words.length - 1]?.end_ms ?? 0; -const getFirstStartMs = (words: WordLike[]): number => words[0]?.start_ms ?? 0; diff --git a/crates/transcript/Cargo.toml b/crates/transcript/Cargo.toml new file mode 100644 index 0000000000..87e506cf2c --- /dev/null +++ b/crates/transcript/Cargo.toml @@ -0,0 +1,14 @@ +[package] +name = "transcript" +version = "0.1.0" +edition = "2024" + +[dev-dependencies] +serde_json = { workspace = true } + +[dependencies] +owhisper-interface = { workspace = true } + +serde = { workspace = true } +specta = { workspace = true } +uuid = { workspace = true, features = ["v4"] } diff --git a/crates/transcript/src/accumulator/channel.rs b/crates/transcript/src/accumulator/channel.rs new file mode 100644 index 0000000000..0d08000ddb --- /dev/null +++ b/crates/transcript/src/accumulator/channel.rs @@ -0,0 +1,58 @@ +use super::words::{ + TranscriptWord, assign_id, dedup, ensure_space_prefix, splice, stitch, strip_overlap, +}; + +pub(super) struct ChannelState { + watermark: i64, + held: Option, + partials: Vec, +} + +impl ChannelState { + pub(super) fn new() -> Self { + Self { + watermark: 0, + held: None, + partials: Vec::new(), + } + } + + pub(super) fn partials(&self) -> &[TranscriptWord] { + &self.partials + } + + pub(super) fn apply_final(&mut self, words: Vec) -> Vec { + let response_end = words.last().map_or(0, |w| w.end_ms); + let new_words: Vec<_> = dedup(words, self.watermark) + .into_iter() + .map(assign_id) + .collect(); + + if new_words.is_empty() { + return vec![]; + } + + self.watermark = response_end; + self.partials = strip_overlap(std::mem::take(&mut self.partials), response_end); + + let (mut emitted, held) = stitch(self.held.take(), new_words); + self.held = held; + emitted.iter_mut().for_each(ensure_space_prefix); + emitted + } + + pub(super) fn apply_partial(&mut self, words: Vec) { + self.partials = splice(&self.partials, words); + } + + pub(super) fn drain(&mut self) -> Vec { + let mut result: Vec<_> = self.held.take().into_iter().collect(); + result.extend( + std::mem::take(&mut self.partials) + .into_iter() + .map(assign_id), + ); + result.iter_mut().for_each(ensure_space_prefix); + result + } +} diff --git a/crates/transcript/src/accumulator/fixtures/deepgram_1.json b/crates/transcript/src/accumulator/fixtures/deepgram_1.json new file mode 100644 index 0000000000..e83d9c7aa7 --- /dev/null +++ b/crates/transcript/src/accumulator/fixtures/deepgram_1.json @@ -0,0 +1,2899 @@ +[ + { + "type": "Results", + "start": 0.0, + "duration": 1.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "", + "words": [], + "confidence": 0.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.0, + "duration": 2.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "", + "words": [], + "confidence": 0.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.0, + "duration": 3.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "", + "words": [], + "confidence": 0.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.0, + "duration": 4.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is", + "words": [ + { + "word": "maybe", + "start": 3.36, + "end": 3.6799998, + "confidence": 0.94384766, + "speaker": 0, + "punctuated_word": "Maybe", + "language": null + }, + { + "word": "this", + "start": 3.6799998, + "end": 3.84, + "confidence": 0.9970703, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 3.84, + "end": 3.9199998, + "confidence": 0.87597656, + "speaker": 0, + "punctuated_word": "is", + "language": null + } + ], + "confidence": 0.94384766, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.0, + "duration": 3.08, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "", + "words": [], + "confidence": 0.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.08, + "duration": 1.9200001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me,", + "words": [ + { + "word": "maybe", + "start": 3.3999999, + "end": 3.7199998, + "confidence": 0.9873047, + "speaker": 0, + "punctuated_word": "Maybe", + "language": null + }, + { + "word": "this", + "start": 3.7199998, + "end": 3.96, + "confidence": 0.9980469, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 3.96, + "end": 4.12, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "me", + "start": 4.12, + "end": 4.52, + "confidence": 0.7385254, + "speaker": 0, + "punctuated_word": "me,", + "language": null + } + ], + "confidence": 0.9980469, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.08, + "duration": 2.92, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me talking to the", + "words": [ + { + "word": "maybe", + "start": 3.3999999, + "end": 3.7199998, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "Maybe", + "language": null + }, + { + "word": "this", + "start": 3.7199998, + "end": 3.96, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 3.96, + "end": 4.12, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "me", + "start": 4.12, + "end": 4.68, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "talking", + "start": 4.84, + "end": 5.3199997, + "confidence": 0.7114258, + "speaker": 0, + "punctuated_word": "talking", + "language": null + }, + { + "word": "to", + "start": 5.3199997, + "end": 5.64, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "to", + "language": null + }, + { + "word": "the", + "start": 5.64, + "end": 5.8, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "the", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.08, + "duration": 3.92, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me talking to the audience a little bit because I get", + "words": [ + { + "word": "maybe", + "start": 3.3999999, + "end": 3.7199998, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "Maybe", + "language": null + }, + { + "word": "this", + "start": 3.7199998, + "end": 3.96, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 3.96, + "end": 4.12, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "me", + "start": 4.12, + "end": 4.3599997, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "talking", + "start": 4.3599997, + "end": 5.3199997, + "confidence": 0.5361328, + "speaker": 0, + "punctuated_word": "talking", + "language": null + }, + { + "word": "to", + "start": 5.3199997, + "end": 5.64, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "to", + "language": null + }, + { + "word": "the", + "start": 5.64, + "end": 5.8, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "the", + "language": null + }, + { + "word": "audience", + "start": 5.8, + "end": 6.12, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "audience", + "language": null + }, + { + "word": "a", + "start": 6.12, + "end": 6.2799997, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "a", + "language": null + }, + { + "word": "little", + "start": 6.2799997, + "end": 6.4399996, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "little", + "language": null + }, + { + "word": "bit", + "start": 6.4399996, + "end": 6.5199995, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "bit", + "language": null + }, + { + "word": "because", + "start": 6.5199995, + "end": 6.68, + "confidence": 0.6738281, + "speaker": 0, + "punctuated_word": "because", + "language": null + }, + { + "word": "i", + "start": 6.68, + "end": 6.7599998, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "I", + "language": null + }, + { + "word": "get", + "start": 6.7599998, + "end": 6.92, + "confidence": 0.53759766, + "speaker": 0, + "punctuated_word": "get", + "language": null + } + ], + "confidence": 0.99902344, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.08, + "duration": 4.92, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me talking to the audience a little bit because I get these days", + "words": [ + { + "word": "maybe", + "start": 3.3999999, + "end": 3.7199998, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "Maybe", + "language": null + }, + { + "word": "this", + "start": 3.7199998, + "end": 3.96, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 3.96, + "end": 4.12, + "confidence": 0.9902344, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "me", + "start": 4.12, + "end": 4.68, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "talking", + "start": 4.84, + "end": 5.3199997, + "confidence": 0.61376953, + "speaker": 0, + "punctuated_word": "talking", + "language": null + }, + { + "word": "to", + "start": 5.3199997, + "end": 5.64, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "to", + "language": null + }, + { + "word": "the", + "start": 5.64, + "end": 5.8, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "the", + "language": null + }, + { + "word": "audience", + "start": 5.8, + "end": 6.12, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "audience", + "language": null + }, + { + "word": "a", + "start": 6.12, + "end": 6.2799997, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "a", + "language": null + }, + { + "word": "little", + "start": 6.2799997, + "end": 6.4399996, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "little", + "language": null + }, + { + "word": "bit", + "start": 6.4399996, + "end": 6.5199995, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "bit", + "language": null + }, + { + "word": "because", + "start": 6.5199995, + "end": 6.7599998, + "confidence": 0.59277344, + "speaker": 0, + "punctuated_word": "because", + "language": null + }, + { + "word": "i", + "start": 6.7599998, + "end": 6.92, + "confidence": 0.9970703, + "speaker": 0, + "punctuated_word": "I", + "language": null + }, + { + "word": "get", + "start": 6.92, + "end": 7.16, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "get", + "language": null + }, + { + "word": "these", + "start": 7.16, + "end": 7.48, + "confidence": 0.7895508, + "speaker": 0, + "punctuated_word": "these", + "language": null + }, + { + "word": "days", + "start": 7.48, + "end": 7.72, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "days", + "language": null + } + ], + "confidence": 0.99902344, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.08, + "duration": 4.9700003, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me talking to the audience a little bit because I get these days", + "words": [ + { + "word": "maybe", + "start": 3.3999999, + "end": 3.7199998, + "confidence": 0.9980469, + "speaker": 0, + "punctuated_word": "Maybe", + "language": null + }, + { + "word": "this", + "start": 3.7199998, + "end": 3.96, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 3.96, + "end": 4.12, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "me", + "start": 4.12, + "end": 4.68, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "talking", + "start": 4.84, + "end": 5.3199997, + "confidence": 0.63378906, + "speaker": 0, + "punctuated_word": "talking", + "language": null + }, + { + "word": "to", + "start": 5.3199997, + "end": 5.64, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "to", + "language": null + }, + { + "word": "the", + "start": 5.64, + "end": 5.8, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "the", + "language": null + }, + { + "word": "audience", + "start": 5.8, + "end": 6.12, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "audience", + "language": null + }, + { + "word": "a", + "start": 6.12, + "end": 6.2799997, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "a", + "language": null + }, + { + "word": "little", + "start": 6.2799997, + "end": 6.4399996, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "little", + "language": null + }, + { + "word": "bit", + "start": 6.4399996, + "end": 6.5199995, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "bit", + "language": null + }, + { + "word": "because", + "start": 6.5199995, + "end": 6.7599998, + "confidence": 0.5957031, + "speaker": 0, + "punctuated_word": "because", + "language": null + }, + { + "word": "i", + "start": 6.7599998, + "end": 6.92, + "confidence": 0.9970703, + "speaker": 0, + "punctuated_word": "I", + "language": null + }, + { + "word": "get", + "start": 6.92, + "end": 7.16, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "get", + "language": null + }, + { + "word": "these", + "start": 7.16, + "end": 7.48, + "confidence": 0.77001953, + "speaker": 0, + "punctuated_word": "these", + "language": null + }, + { + "word": "days", + "start": 7.48, + "end": 7.72, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "days", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 8.05, + "duration": 1.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "so many", + "words": [ + { + "word": "so", + "start": 8.05, + "end": 8.53, + "confidence": 0.9604492, + "speaker": 0, + "punctuated_word": "so", + "language": null + }, + { + "word": "many", + "start": 8.53, + "end": 8.85, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "many", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 8.05, + "duration": 2.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "so many messages. I", + "words": [ + { + "word": "so", + "start": 8.13, + "end": 8.690001, + "confidence": 0.97509766, + "speaker": 0, + "punctuated_word": "so", + "language": null + }, + { + "word": "many", + "start": 8.690001, + "end": 9.01, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "many", + "language": null + }, + { + "word": "messages", + "start": 9.01, + "end": 9.65, + "confidence": 0.9914551, + "speaker": 0, + "punctuated_word": "messages.", + "language": null + }, + { + "word": "i", + "start": 9.7300005, + "end": 9.97, + "confidence": 0.9873047, + "speaker": 0, + "punctuated_word": "I", + "language": null + } + ], + "confidence": 0.9914551, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 8.05, + "duration": 3.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "so many messages, advice on how", + "words": [ + { + "word": "so", + "start": 8.05, + "end": 8.690001, + "confidence": 0.9790039, + "speaker": 0, + "punctuated_word": "so", + "language": null + }, + { + "word": "many", + "start": 8.690001, + "end": 9.01, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "many", + "language": null + }, + { + "word": "messages", + "start": 9.01, + "end": 9.73, + "confidence": 0.8666992, + "speaker": 0, + "punctuated_word": "messages,", + "language": null + }, + { + "word": "advice", + "start": 10.05, + "end": 10.530001, + "confidence": 0.99121094, + "speaker": 0, + "punctuated_word": "advice", + "language": null + }, + { + "word": "on", + "start": 10.530001, + "end": 10.85, + "confidence": 0.9326172, + "speaker": 0, + "punctuated_word": "on", + "language": null + }, + { + "word": "how", + "start": 10.85, + "end": 11.01, + "confidence": 0.9980469, + "speaker": 0, + "punctuated_word": "how", + "language": null + } + ], + "confidence": 0.99121094, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 8.05, + "duration": 3.5999994, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "so many messages, advice on how to, like,", + "words": [ + { + "word": "so", + "start": 8.05, + "end": 8.690001, + "confidence": 0.96875, + "speaker": 0, + "punctuated_word": "so", + "language": null + }, + { + "word": "many", + "start": 8.690001, + "end": 9.01, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "many", + "language": null + }, + { + "word": "messages", + "start": 9.01, + "end": 9.73, + "confidence": 0.84277344, + "speaker": 0, + "punctuated_word": "messages,", + "language": null + }, + { + "word": "advice", + "start": 10.05, + "end": 10.610001, + "confidence": 0.9790039, + "speaker": 0, + "punctuated_word": "advice", + "language": null + }, + { + "word": "on", + "start": 10.610001, + "end": 10.93, + "confidence": 0.9482422, + "speaker": 0, + "punctuated_word": "on", + "language": null + }, + { + "word": "how", + "start": 10.93, + "end": 11.09, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "how", + "language": null + }, + { + "word": "to", + "start": 11.09, + "end": 11.33, + "confidence": 0.9641113, + "speaker": 0, + "punctuated_word": "to,", + "language": null + }, + { + "word": "like", + "start": 11.33, + "end": 11.41, + "confidence": 0.9855957, + "speaker": 0, + "punctuated_word": "like,", + "language": null + } + ], + "confidence": 0.9790039, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 11.65, + "duration": 1.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "look", + "words": [ + { + "word": "look", + "start": 12.37, + "end": 12.61, + "confidence": 0.5029297, + "speaker": 0, + "punctuated_word": "look", + "language": null + } + ], + "confidence": 0.5029297, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 11.65, + "duration": 2.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "learn stuff. Okay?", + "words": [ + { + "word": "learn", + "start": 12.53, + "end": 12.929999, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "learn", + "language": null + }, + { + "word": "stuff", + "start": 12.929999, + "end": 13.41, + "confidence": 0.9946289, + "speaker": 0, + "punctuated_word": "stuff.", + "language": null + }, + { + "word": "okay", + "start": 13.41, + "end": 13.65, + "confidence": 0.78466797, + "speaker": 0, + "punctuated_word": "Okay?", + "language": null + } + ], + "confidence": 0.9946289, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 11.65, + "duration": 3.0, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "learn stuff. Okay?", + "words": [ + { + "word": "learn", + "start": 12.53, + "end": 12.929999, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "learn", + "language": null + }, + { + "word": "stuff", + "start": 12.929999, + "end": 13.49, + "confidence": 0.99853516, + "speaker": 0, + "punctuated_word": "stuff.", + "language": null + }, + { + "word": "okay", + "start": 13.49, + "end": 13.809999, + "confidence": 0.9736328, + "speaker": 0, + "punctuated_word": "Okay?", + "language": null + } + ], + "confidence": 0.99853516, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.65, + "duration": 1.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "My", + "words": [ + { + "word": "my", + "start": 15.21, + "end": 15.45, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "My", + "language": null + } + ], + "confidence": 0.99902344, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.65, + "duration": 1.3000002, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "My", + "words": [ + { + "word": "my", + "start": 15.29, + "end": 15.53, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "My", + "language": null + } + ], + "confidence": 0.99902344, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.95, + "duration": 1.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "this this this", + "words": [ + { + "word": "this", + "start": 15.95, + "end": 16.43, + "confidence": 0.9902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.43, + "end": 16.67, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.67, + "end": 16.83, + "confidence": 0.9863281, + "speaker": 0, + "punctuated_word": "this", + "language": null + } + ], + "confidence": 0.9902344, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.95, + "duration": 2.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "this this this is not me being", + "words": [ + { + "word": "this", + "start": 16.11, + "end": 16.43, + "confidence": 0.98828125, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.43, + "end": 16.75, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.75, + "end": 16.99, + "confidence": 0.9604492, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 16.99, + "end": 17.15, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "not", + "start": 17.15, + "end": 17.39, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "not", + "language": null + }, + { + "word": "me", + "start": 17.39, + "end": 17.63, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "being", + "start": 17.63, + "end": 17.869999, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "being", + "language": null + } + ], + "confidence": 0.99609375, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.95, + "duration": 3.0500002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "this this this is not me being mean. I think this is", + "words": [ + { + "word": "this", + "start": 15.95, + "end": 16.43, + "confidence": 0.984375, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.43, + "end": 16.75, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.75, + "end": 16.99, + "confidence": 0.9633789, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 16.99, + "end": 17.15, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "not", + "start": 17.15, + "end": 17.39, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "not", + "language": null + }, + { + "word": "me", + "start": 17.39, + "end": 17.71, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "being", + "start": 17.71, + "end": 17.95, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "being", + "language": null + }, + { + "word": "mean", + "start": 17.95, + "end": 18.27, + "confidence": 0.98950195, + "speaker": 0, + "punctuated_word": "mean.", + "language": null + }, + { + "word": "i", + "start": 18.27, + "end": 18.43, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "I", + "language": null + }, + { + "word": "think", + "start": 18.43, + "end": 18.51, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "think", + "language": null + }, + { + "word": "this", + "start": 18.51, + "end": 18.67, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 18.67, + "end": 18.83, + "confidence": 0.9970703, + "speaker": 0, + "punctuated_word": "is", + "language": null + } + ], + "confidence": 0.99902344, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.95, + "duration": 4.05, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "this this this is not me being mean. I think this is quite profound, actually,", + "words": [ + { + "word": "this", + "start": 15.95, + "end": 16.43, + "confidence": 0.99316406, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.43, + "end": 16.75, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.75, + "end": 16.99, + "confidence": 0.9667969, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 16.99, + "end": 17.15, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "not", + "start": 17.15, + "end": 17.39, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "not", + "language": null + }, + { + "word": "me", + "start": 17.39, + "end": 17.71, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "being", + "start": 17.71, + "end": 17.95, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "being", + "language": null + }, + { + "word": "mean", + "start": 17.95, + "end": 18.35, + "confidence": 0.9863281, + "speaker": 0, + "punctuated_word": "mean.", + "language": null + }, + { + "word": "i", + "start": 18.35, + "end": 18.43, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "I", + "language": null + }, + { + "word": "think", + "start": 18.43, + "end": 18.59, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "think", + "language": null + }, + { + "word": "this", + "start": 18.59, + "end": 18.75, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 18.75, + "end": 18.91, + "confidence": 0.9980469, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "quite", + "start": 18.91, + "end": 19.15, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "quite", + "language": null + }, + { + "word": "profound", + "start": 19.15, + "end": 19.71, + "confidence": 0.82836914, + "speaker": 0, + "punctuated_word": "profound,", + "language": null + }, + { + "word": "actually", + "start": 19.71, + "end": 19.95, + "confidence": 0.6101074, + "speaker": 0, + "punctuated_word": "actually,", + "language": null + } + ], + "confidence": 0.9980469, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.95, + "duration": 4.6400003, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "this this this is not me being mean. I think this is quite profound, actually.", + "words": [ + { + "word": "this", + "start": 15.95, + "end": 16.43, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.43, + "end": 16.75, + "confidence": 0.99121094, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "this", + "start": 16.75, + "end": 16.99, + "confidence": 0.78271484, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 16.99, + "end": 17.15, + "confidence": 0.9951172, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "not", + "start": 17.15, + "end": 17.39, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "not", + "language": null + }, + { + "word": "me", + "start": 17.39, + "end": 17.71, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "me", + "language": null + }, + { + "word": "being", + "start": 17.71, + "end": 17.869999, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "being", + "language": null + }, + { + "word": "mean", + "start": 17.869999, + "end": 18.35, + "confidence": 0.9863281, + "speaker": 0, + "punctuated_word": "mean.", + "language": null + }, + { + "word": "i", + "start": 18.35, + "end": 18.43, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "I", + "language": null + }, + { + "word": "think", + "start": 18.43, + "end": 18.59, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "think", + "language": null + }, + { + "word": "this", + "start": 18.59, + "end": 18.75, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "this", + "language": null + }, + { + "word": "is", + "start": 18.75, + "end": 18.91, + "confidence": 0.9980469, + "speaker": 0, + "punctuated_word": "is", + "language": null + }, + { + "word": "quite", + "start": 18.91, + "end": 19.15, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "quite", + "language": null + }, + { + "word": "profound", + "start": 19.15, + "end": 19.789999, + "confidence": 0.8364258, + "speaker": 0, + "punctuated_word": "profound,", + "language": null + }, + { + "word": "actually", + "start": 19.789999, + "end": 20.11, + "confidence": 0.94433594, + "speaker": 0, + "punctuated_word": "actually.", + "language": null + } + ], + "confidence": 0.9980469, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.59, + "duration": 1.0100002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Is you should", + "words": [ + { + "word": "is", + "start": 20.67, + "end": 21.07, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "Is", + "language": null + }, + { + "word": "you", + "start": 21.07, + "end": 21.39, + "confidence": 0.97314453, + "speaker": 0, + "punctuated_word": "you", + "language": null + }, + { + "word": "should", + "start": 21.39, + "end": 21.55, + "confidence": 0.9980469, + "speaker": 0, + "punctuated_word": "should", + "language": null + } + ], + "confidence": 0.99609375, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.59, + "duration": 2.0100002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Is you should Google it.", + "words": [ + { + "word": "is", + "start": 20.67, + "end": 21.15, + "confidence": 0.9970703, + "speaker": 0, + "punctuated_word": "Is", + "language": null + }, + { + "word": "you", + "start": 21.15, + "end": 21.47, + "confidence": 0.97802734, + "speaker": 0, + "punctuated_word": "you", + "language": null + }, + { + "word": "should", + "start": 21.47, + "end": 21.710001, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "should", + "language": null + }, + { + "word": "google", + "start": 21.710001, + "end": 22.03, + "confidence": 0.8510742, + "speaker": 0, + "punctuated_word": "Google", + "language": null + }, + { + "word": "it", + "start": 22.03, + "end": 22.27, + "confidence": 0.8942871, + "speaker": 0, + "punctuated_word": "it.", + "language": null + } + ], + "confidence": 0.97802734, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.59, + "duration": 3.0100002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Is you should Google it. Oh, yeah.", + "words": [ + { + "word": "is", + "start": 20.67, + "end": 21.23, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "Is", + "language": null + }, + { + "word": "you", + "start": 21.23, + "end": 21.47, + "confidence": 0.9770508, + "speaker": 0, + "punctuated_word": "you", + "language": null + }, + { + "word": "should", + "start": 21.47, + "end": 21.710001, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "should", + "language": null + }, + { + "word": "google", + "start": 21.710001, + "end": 22.11, + "confidence": 0.8378906, + "speaker": 0, + "punctuated_word": "Google", + "language": null + }, + { + "word": "it", + "start": 22.11, + "end": 22.59, + "confidence": 0.9926758, + "speaker": 0, + "punctuated_word": "it.", + "language": null + }, + { + "word": "oh", + "start": 22.91, + "end": 23.23, + "confidence": 0.85375977, + "speaker": 0, + "punctuated_word": "Oh,", + "language": null + }, + { + "word": "yeah", + "start": 23.23, + "end": 23.31, + "confidence": 0.9772949, + "speaker": 0, + "punctuated_word": "yeah.", + "language": null + } + ], + "confidence": 0.9772949, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.59, + "duration": 4.01, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Is you should Google it. Oh, yeah. Like,", + "words": [ + { + "word": "is", + "start": 20.75, + "end": 21.15, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "Is", + "language": null + }, + { + "word": "you", + "start": 21.15, + "end": 21.47, + "confidence": 0.9838867, + "speaker": 0, + "punctuated_word": "you", + "language": null + }, + { + "word": "should", + "start": 21.47, + "end": 21.710001, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "should", + "language": null + }, + { + "word": "google", + "start": 21.710001, + "end": 22.11, + "confidence": 0.83935547, + "speaker": 0, + "punctuated_word": "Google", + "language": null + }, + { + "word": "it", + "start": 22.11, + "end": 22.59, + "confidence": 0.9926758, + "speaker": 0, + "punctuated_word": "it.", + "language": null + }, + { + "word": "oh", + "start": 22.83, + "end": 23.23, + "confidence": 0.89990234, + "speaker": 0, + "punctuated_word": "Oh,", + "language": null + }, + { + "word": "yeah", + "start": 23.23, + "end": 23.71, + "confidence": 0.9941406, + "speaker": 0, + "punctuated_word": "yeah.", + "language": null + }, + { + "word": "like", + "start": 23.95, + "end": 24.19, + "confidence": 0.7956543, + "speaker": 0, + "punctuated_word": "Like,", + "language": null + } + ], + "confidence": 0.9926758, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.59, + "duration": 3.1399994, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Is you should Google it. Oh, yeah.", + "words": [ + { + "word": "is", + "start": 20.75, + "end": 21.15, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "Is", + "language": null + }, + { + "word": "you", + "start": 21.15, + "end": 21.47, + "confidence": 0.9790039, + "speaker": 0, + "punctuated_word": "you", + "language": null + }, + { + "word": "should", + "start": 21.47, + "end": 21.710001, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "should", + "language": null + }, + { + "word": "google", + "start": 21.710001, + "end": 22.11, + "confidence": 0.81640625, + "speaker": 0, + "punctuated_word": "Google", + "language": null + }, + { + "word": "it", + "start": 22.11, + "end": 22.59, + "confidence": 0.9916992, + "speaker": 0, + "punctuated_word": "it.", + "language": null + }, + { + "word": "oh", + "start": 22.75, + "end": 23.23, + "confidence": 0.84814453, + "speaker": 0, + "punctuated_word": "Oh,", + "language": null + }, + { + "word": "yeah", + "start": 23.23, + "end": 23.39, + "confidence": 0.9848633, + "speaker": 0, + "punctuated_word": "yeah.", + "language": null + } + ], + "confidence": 0.9848633, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 23.73, + "duration": 1.8700008, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Like,", + "words": [ + { + "word": "like", + "start": 23.89, + "end": 24.289999, + "confidence": 0.69763184, + "speaker": 0, + "punctuated_word": "Like,", + "language": null + } + ], + "confidence": 0.69763184, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 23.73, + "duration": 2.9700012, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Like, 1 of the", + "words": [ + { + "word": "like", + "start": 23.89, + "end": 24.609999, + "confidence": 0.78515625, + "speaker": 0, + "punctuated_word": "Like,", + "language": null + }, + { + "word": "1", + "start": 24.689999, + "end": 25.17, + "confidence": 0.8378906, + "speaker": 0, + "punctuated_word": "1", + "language": null + }, + { + "word": "of", + "start": 26.369999, + "end": 26.529999, + "confidence": 0.66064453, + "speaker": 0, + "punctuated_word": "of", + "language": null + }, + { + "word": "the", + "start": 26.529999, + "end": 26.609999, + "confidence": 0.5205078, + "speaker": 0, + "punctuated_word": "the", + "language": null + } + ], + "confidence": 0.78515625, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 23.73, + "duration": 3.5699997, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Like, 1 of the", + "words": [ + { + "word": "like", + "start": 23.89, + "end": 24.609999, + "confidence": 0.7541504, + "speaker": 0, + "punctuated_word": "Like,", + "language": null + }, + { + "word": "1", + "start": 24.689999, + "end": 25.17, + "confidence": 0.85839844, + "speaker": 0, + "punctuated_word": "1", + "language": null + }, + { + "word": "of", + "start": 26.449999, + "end": 26.609999, + "confidence": 0.71240234, + "speaker": 0, + "punctuated_word": "of", + "language": null + }, + { + "word": "the", + "start": 26.609999, + "end": 26.77, + "confidence": 0.9741211, + "speaker": 0, + "punctuated_word": "the", + "language": null + } + ], + "confidence": 0.85839844, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 27.3, + "duration": 1.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "like, skills", + "words": [ + { + "word": "like", + "start": 27.3, + "end": 27.779999, + "confidence": 0.78466797, + "speaker": 0, + "punctuated_word": "like,", + "language": null + }, + { + "word": "skills", + "start": 27.779999, + "end": 28.019999, + "confidence": 0.99902344, + "speaker": 0, + "punctuated_word": "skills", + "language": null + } + ], + "confidence": 0.99902344, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 27.3, + "duration": 2.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "like, skills that you should really", + "words": [ + { + "word": "like", + "start": 27.38, + "end": 27.779999, + "confidence": 0.8913574, + "speaker": 0, + "punctuated_word": "like,", + "language": null + }, + { + "word": "skills", + "start": 27.779999, + "end": 28.259998, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "skills", + "language": null + }, + { + "word": "that", + "start": 28.259998, + "end": 28.5, + "confidence": 0.9892578, + "speaker": 0, + "punctuated_word": "that", + "language": null + }, + { + "word": "you", + "start": 28.5, + "end": 28.66, + "confidence": 0.9970703, + "speaker": 0, + "punctuated_word": "you", + "language": null + }, + { + "word": "should", + "start": 28.66, + "end": 28.9, + "confidence": 0.9970703, + "speaker": 0, + "punctuated_word": "should", + "language": null + }, + { + "word": "really", + "start": 28.9, + "end": 29.06, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "really", + "language": null + } + ], + "confidence": 0.9970703, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 27.3, + "duration": 2.1000004, + "is_final": true, + "speech_final": true, + "from_finalize": true, + "channel": { + "alternatives": [ + { + "transcript": "like skills that you should really", + "words": [ + { + "word": "like", + "start": 27.3, + "end": 27.619999, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "like", + "language": null + }, + { + "word": "skills", + "start": 27.619999, + "end": 28.259998, + "confidence": 0.5439453, + "speaker": 0, + "punctuated_word": "skills", + "language": null + }, + { + "word": "that", + "start": 28.259998, + "end": 28.5, + "confidence": 0.97998047, + "speaker": 0, + "punctuated_word": "that", + "language": null + }, + { + "word": "you", + "start": 28.5, + "end": 28.66, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "you", + "language": null + }, + { + "word": "should", + "start": 28.66, + "end": 28.9, + "confidence": 0.99609375, + "speaker": 0, + "punctuated_word": "should", + "language": null + }, + { + "word": "really", + "start": 28.9, + "end": 29.06, + "confidence": 1.0, + "speaker": 0, + "punctuated_word": "really", + "language": null + } + ], + "confidence": 0.99609375, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", + "model_info": { + "name": "general-nova-3", + "version": "2025-04-17.21547", + "arch": "nova-3" + }, + "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + } +] diff --git a/crates/transcript/src/accumulator/fixtures/soniox_1.json b/crates/transcript/src/accumulator/fixtures/soniox_1.json new file mode 100644 index 0000000000..468140bd83 --- /dev/null +++ b/crates/transcript/src/accumulator/fixtures/soniox_1.json @@ -0,0 +1,21092 @@ +[ + { + "type": "Results", + "start": 3.6, + "duration": 0.06000000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "May", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c1d709e5-b666-4599-a492-31bdb67b02ec", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6bcedc82-b849-45be-83bf-588a35de820d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 0.17999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1b0e33b4-60a7-44e5-af5a-c1bd633f5790", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2b67b9f6-6ecd-4b8b-93ff-6d1273577f79", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 0.2999999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a1852e42-9dc6-4e2b-8533-90fb86d2678e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "53b6b602-2ec0-42b0-b008-51c816eaf231", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 0.4199999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "71d1944b-9cab-48ca-a711-475e61d21173", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6e91a11b-cccb-4e79-aa92-32234981d797", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 0.7200000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is m", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "92090644-7498-42ab-90b9-4f0296a073cc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4a0b7cb0-93c0-4f5f-bb37-59ba9c532bad", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.02, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me,", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "633d4eca-9008-42b8-898c-f8bb2b44da9c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fe3e1b73-c991-4841-9cbe-1d0b66a97d3e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.1999999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, u", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8ccf5303-ef85-4bb7-aee8-d65211335ae7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "98d5c8ba-e020-4384-9f89-52fd2f6d22e9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.2600000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh,", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ad2173d1-26a9-4216-9af0-7a07f5c710c4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b804e47d-e882-48e3-9f0a-9c52ae379f94", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.3800000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, tal", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2fb9a675-e4f6-46f7-b56d-fbcd647ace01", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6bf07abf-4599-4b7d-a22e-b86288c75672", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.4999999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talk", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f7826771-c084-4965-a026-7b37407ef6bf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "09fec794-ca77-4d4e-84b0-d589facab20e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.6199999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "31aec28a-3fdd-4857-8d67-53c58b6d4cb0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "16396584-25e2-4c3a-9699-35ef09402b0c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.8000000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7bca1aa4-4947-4c8c-94bd-8027c7421726", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fd106e72-ec71-498f-b1c0-6d0a9957c5d3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.98, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ff2cae54-5714-4d03-bad2-e621e86f4a51", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "650b37fb-51ee-4df8-b92b-cef7b8b2455c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 2.1599999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the aud", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ec5e938e-c9bb-4dbe-a712-3575a7a70e65", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c28127b1-f022-4589-a9e4-6df80875a8f7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 2.28, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audien", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c88ff76e-0221-4914-bd6e-1f23d29a9c33", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ce9449c2-c10d-40d3-bbc7-a242dd6fa582", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 2.52, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6e9ec700-9879-417c-b9f8-03d4453d7d69", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "518ef3ef-53db-4114-95fa-b7368ba0e7ad", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 2.64, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a l", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fb4955d7-8a12-4253-a489-19c52aa7b6c4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "99e8b3d8-c582-405e-8a1f-df5227208432", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 2.7600000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ffddb8b8-1deb-4cf8-a303-cec7d777f745", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "915f683e-2b4b-495b-a990-beaecbc01891", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 2.8800000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little b", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fade8af8-2a39-4057-b55d-912de7a0b861", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3794f947-c8de-45e3-9bda-c1959d255c43", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 2.9999999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, '", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1ab05b78-682f-40fa-82c8-083883cb59c5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "70837620-61c8-41a1-8ac1-b81f6f382c63", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 3.1199999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'ca", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a84500e5-989d-4b22-a84d-0c32cfddbe6d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "617cd587-3fe8-4503-bc8b-e297ab4661b4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 3.2399999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "044e5862-21c6-4444-a1da-9e7f6d97be92", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f2b7da46-95bd-4bce-b725-c465a5840b1c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 3.4199999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3d77b0fd-f44f-42b0-94d3-70e6b39fb67e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "349562e7-b302-4a9c-9418-328e6d568e42", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 3.72, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2e3da729-1c8a-4b2b-89e2-5664342e1842", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2ffa2cc3-3fd5-46ef-9507-b4c716a58b93", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 3.9599999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these d", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7bd9c969-231e-4db8-a57a-764c77e22981", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "345cf9a0-0400-4ea7-9b3d-ec4aec16bbd1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 4.199999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "13f64306-dedf-41b7-be6f-d83fa8089491", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c8ab87bd-05ff-45ae-aaec-3c4e331a77e0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 4.860000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9b89a878-500b-4497-965c-e94f17769fa0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "04de643c-d302-434f-a946-f7c251f3dabd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 5.1, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5d7074fa-58a7-4f21-b8de-6275c171cfc3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "126c3949-7a3b-48e8-8662-a7401f712402", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 5.4, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many m", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "41792a2d-e7d7-4f8f-a840-f84d42c0fc7d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e119c8e5-5117-4ec4-a593-b20d73f0f4f6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 5.52, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many mess", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dec61fed-ccee-41cb-8c31-24a136c7c863", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eba0ce2d-f591-491b-9e2e-f84977f67c38", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 5.76, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many messag", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "be4d4d72-0e00-4d12-8913-d58f8d306238", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "46c42346-e281-483e-a33f-a88def1bfcc4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 5.880000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many messages", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ages", + "start": 9.42, + "end": 9.48, + "confidence": 0.731, + "speaker": 1, + "punctuated_word": "ages", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f5a7989c-8784-4b1f-b81d-11954632e680", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7c401275-7994-4f1e-b031-bca8aed3b48a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 5.880000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many messages,", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0255c123-677b-492b-af7d-18c78ecb272b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "47a0f710-d825-42ce-83fb-78699c09e51f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 3.6, + "duration": 1.98, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "Maybe this is me, uh, talking to the", + "words": [ + { + "word": "May", + "start": 3.6, + "end": 3.66, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "May", + "language": null + }, + { + "word": "be", + "start": 3.72, + "end": 3.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "be", + "language": null + }, + { + "word": " this", + "start": 3.84, + "end": 3.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 3.96, + "end": 4.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " m", + "start": 4.26, + "end": 4.32, + "confidence": 0.852, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "e,", + "start": 4.56, + "end": 4.62, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " u", + "start": 4.74, + "end": 4.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 4.8, + "end": 4.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " tal", + "start": 4.92, + "end": 4.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " tal", + "language": null + }, + { + "word": "k", + "start": 5.04, + "end": 5.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "k", + "language": null + }, + { + "word": "ing", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ing", + "language": null + }, + { + "word": " to", + "start": 5.34, + "end": 5.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": " the", + "start": 5.52, + "end": 5.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e68409d5-be47-49a4-8df4-ad10c9416ed2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c44fa5fd-6c12-426b-ae68-6544fef0cb45", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 3.7800000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages,", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "25abff95-9a95-4712-963a-ceacbb5e6c0a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c92cf4b1-737e-486f-adb7-7cf7ddbc7726", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 4.56, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, adv", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a51098cd-be51-4f38-87f7-6bf02589a4b9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a72ebb3d-c98e-4861-b7a8-c970f745e6d4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 4.8, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, advice", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b4be0604-5c29-4e49-bb3a-f1837edb090c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6c9c07b6-467c-45bd-870d-19b719046405", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 4.9799999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, advice on", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "087803fa-16c3-4227-8421-9369ef02a7d1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f1d0d01a-a217-4e17-b392-0d6bdb04db3c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 5.28, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dfe5b051-d37f-425e-9131-3e5f1dff2b32", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0c2ae92c-15e8-4fb1-82df-0e76caf9a88d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 5.3999999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7c4acd17-f7cc-4c0a-8f27-3f43577e195a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7c37a23d-208f-42ad-a317-d5397b0aead0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 5.579999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to,", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "770e507b-56b9-45a8-961f-f66254ab915e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b098a587-25aa-4629-b1a0-a69b2182201d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 5.7, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to, lik", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4756226a-2671-469e-bfef-c05d016cd3e5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a324a45e-8985-4cc3-b0dd-564b23576900", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 5.819999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to, like,", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + }, + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e5f63170-14ec-411a-8bb6-2f556f911745", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bd33911f-8548-4a51-84ef-71f07e4a7e17", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.7, + "duration": 1.8599999999999994, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " audience a little bit, 'cause I get these d", + "words": [ + { + "word": " aud", + "start": 5.7, + "end": 5.76, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " aud", + "language": null + }, + { + "word": "ien", + "start": 5.82, + "end": 5.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ien", + "language": null + }, + { + "word": "ce", + "start": 6.06, + "end": 6.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ce", + "language": null + }, + { + "word": " a", + "start": 6.12, + "end": 6.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " l", + "start": 6.18, + "end": 6.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " l", + "language": null + }, + { + "word": "ittle", + "start": 6.3, + "end": 6.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ittle", + "language": null + }, + { + "word": " b", + "start": 6.42, + "end": 6.48, + "confidence": 0.798, + "speaker": 1, + "punctuated_word": " b", + "language": null + }, + { + "word": "it,", + "start": 6.48, + "end": 6.54, + "confidence": 0.924, + "speaker": 1, + "punctuated_word": "it,", + "language": null + }, + { + "word": " '", + "start": 6.54, + "end": 6.6, + "confidence": 0.706, + "speaker": 1, + "punctuated_word": " '", + "language": null + }, + { + "word": "ca", + "start": 6.66, + "end": 6.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ca", + "language": null + }, + { + "word": "use", + "start": 6.72, + "end": 6.78, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "use", + "language": null + }, + { + "word": " I", + "start": 6.78, + "end": 6.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " get", + "start": 6.96, + "end": 7.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " get", + "language": null + }, + { + "word": " these", + "start": 7.26, + "end": 7.32, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " these", + "language": null + }, + { + "word": " d", + "start": 7.5, + "end": 7.56, + "confidence": 0.817, + "speaker": 1, + "punctuated_word": " d", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9a8cd096-fae0-4ab1-b5b3-b3086cd1f032", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fdc9446c-1b95-4fbb-b315-27f7a20e3495", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 3.7799999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like,", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "564a0107-3f64-4920-b5ca-fdb36f5f32e5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e9b112b4-3246-4271-89d6-601587e0ecb5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 4.799999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, le", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1afa8c08-1fd4-48cb-b1c2-5c39777c4f97", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d0df7a60-0eaf-4d3b-ace1-0f0585601658", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 4.98, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, learn", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + }, + { + "word": "arn", + "start": 12.66, + "end": 12.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "arn", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8836abba-8211-4e44-a7d2-149a7bd685f8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "453fe714-c5f5-497f-af12-5300564c6b67", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 5.220000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, learn st", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + }, + { + "word": "arn", + "start": 12.66, + "end": 12.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "arn", + "language": null + }, + { + "word": " st", + "start": 12.9, + "end": 12.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " st", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "03f60f9a-c7d9-4c70-b8ae-77ef0c6e4eba", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5b39ee35-5796-4f06-b42b-4b71b9fac5f5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 5.34, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, learn stu", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + }, + { + "word": "arn", + "start": 12.66, + "end": 12.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "arn", + "language": null + }, + { + "word": " st", + "start": 12.9, + "end": 12.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " st", + "language": null + }, + { + "word": "u", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "u", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "98b44bd7-1982-4249-a733-0dc2e251d973", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "28caff13-dc57-44fa-9e34-05acfbe1f6eb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 5.4, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, learn stuff", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + }, + { + "word": "arn", + "start": 12.66, + "end": 12.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "arn", + "language": null + }, + { + "word": " st", + "start": 12.9, + "end": 12.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " st", + "language": null + }, + { + "word": "u", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "u", + "language": null + }, + { + "word": "ff", + "start": 13.08, + "end": 13.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ff", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cce7beb8-57b8-49a0-911d-f95fba836fc0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a101e43c-ae3d-44c8-9ab6-6cd448ebbfdf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 5.699999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, learn stuff,", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + }, + { + "word": "arn", + "start": 12.66, + "end": 12.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "arn", + "language": null + }, + { + "word": " st", + "start": 12.9, + "end": 12.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " st", + "language": null + }, + { + "word": "u", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "u", + "language": null + }, + { + "word": "ff", + "start": 13.08, + "end": 13.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ff", + "language": null + }, + { + "word": ",", + "start": 13.38, + "end": 13.44, + "confidence": 0.881, + "speaker": 1, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "51dfa267-e9eb-42b6-a5a0-873940e2f084", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0571b07d-d206-4584-ba48-c1bb134d3870", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 5.82, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, learn stuff, ok", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + }, + { + "word": "arn", + "start": 12.66, + "end": 12.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "arn", + "language": null + }, + { + "word": " st", + "start": 12.9, + "end": 12.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " st", + "language": null + }, + { + "word": "u", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "u", + "language": null + }, + { + "word": "ff", + "start": 13.08, + "end": 13.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ff", + "language": null + }, + { + "word": ",", + "start": 13.38, + "end": 13.44, + "confidence": 0.881, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " ok", + "start": 13.5, + "end": 13.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " ok", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f9ad2fed-aa85-4c55-a415-8ae1c3b3acbd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b90a2633-0c34-4739-b01f-47f961c00e5f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.74, + "duration": 6.0600000000000005, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "ays so many messages, advice on how to, like, learn stuff, okay?", + "words": [ + { + "word": "ays", + "start": 7.74, + "end": 7.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ays", + "language": null + }, + { + "word": " so", + "start": 8.4, + "end": 8.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " so", + "language": null + }, + { + "word": " many", + "start": 8.64, + "end": 8.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " many", + "language": null + }, + { + "word": " m", + "start": 8.94, + "end": 9.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " m", + "language": null + }, + { + "word": "ess", + "start": 9.06, + "end": 9.12, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ess", + "language": null + }, + { + "word": "ag", + "start": 9.3, + "end": 9.36, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "ag", + "language": null + }, + { + "word": "es,", + "start": 9.42, + "end": 9.48, + "confidence": 0.531, + "speaker": 1, + "punctuated_word": "es,", + "language": null + }, + { + "word": " adv", + "start": 10.2, + "end": 10.26, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": " adv", + "language": null + }, + { + "word": "ice", + "start": 10.44, + "end": 10.5, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "ice", + "language": null + }, + { + "word": " on", + "start": 10.62, + "end": 10.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " on", + "language": null + }, + { + "word": " how", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " how", + "language": null + }, + { + "word": " to", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " to", + "language": null + }, + { + "word": ",", + "start": 11.22, + "end": 11.28, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " lik", + "start": 11.34, + "end": 11.4, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 11.46, + "end": 11.52, + "confidence": 0.991, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " le", + "start": 12.48, + "end": 12.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " le", + "language": null + }, + { + "word": "arn", + "start": 12.66, + "end": 12.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "arn", + "language": null + }, + { + "word": " st", + "start": 12.9, + "end": 12.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " st", + "language": null + }, + { + "word": "u", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "u", + "language": null + }, + { + "word": "ff", + "start": 13.08, + "end": 13.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ff", + "language": null + }, + { + "word": ",", + "start": 13.38, + "end": 13.44, + "confidence": 0.881, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " ok", + "start": 13.5, + "end": 13.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " ok", + "language": null + }, + { + "word": "ay", + "start": 13.68, + "end": 13.74, + "confidence": 0.976, + "speaker": 1, + "punctuated_word": "ay", + "language": null + }, + { + "word": "?", + "start": 13.74, + "end": 13.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "?", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bf6dc63f-00c6-4711-8e5d-cf794065848c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7d200f4c-97ae-4909-bfd7-11daf313492e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 0.0600000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "52262c57-9ae5-4901-b937-85c9202ea170", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "45040585-0e4e-4520-b14f-869f246ec48d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 0.4200000000000017, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "76c4ec32-3624-4bd8-997a-f69f06fe5727", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c77f8b56-fe66-47fb-a0b7-869df75ac085", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 0.8399999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—th", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "aaad14b3-8ee6-4d99-bc11-2875354ddfd8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "34fd70cc-3056-478d-a690-4647b295c0ed", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 0.9600000000000009, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this,", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7959b827-5d96-4681-a532-0b3394b0b913", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f5803d29-3a76-41c3-aa7e-cdc17a5a2c1d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 1.1400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, th", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "748500f8-0bfc-4cb0-8288-60cc5d9d8e25", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a3abdede-f53d-4c04-a2fd-479562892605", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 1.1999999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this,", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c380e744-e5f9-4bee-80de-79bf41edd005", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "dd70ad1b-a8cb-4306-8619-527d4c3cfbd5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 1.3200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f5df04b6-c1ab-40b2-837a-5e249295999a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ff664b43-4b9c-4985-9ad4-e5ee6a51af35", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 1.4400000000000013, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "64b4ad8b-2b7c-4d46-90d6-f5e0e6501d51", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cb217b7f-8488-4d8d-8975-40c872465624", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 1.5600000000000023, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "94de75a1-c37e-4706-99e7-deff787b6721", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "314607d8-ec2d-44f5-8cb9-b46b91dd1c74", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 1.9200000000000017, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c07f2ac4-c0a4-47d1-bd12-7b8199e021a7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fc7e794f-73c1-481a-bbd5-b200daa8cf83", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 2.16, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8f622603-9ddd-48ee-8e0f-b07bc2588124", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "296bcba1-334e-4a1a-b5ff-a4b21608bc18", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 2.5199999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being me", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2e7877f1-216a-4223-8b2d-891db7b6b1a0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f412995c-f495-4c8b-aa89-154b6cfb7935", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 2.6400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean.", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8feeb0a5-c850-40bb-b2a8-f4947951cc55", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9a95d90d-2918-48aa-b7d2-72d8461a9b97", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 2.8200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I th", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "38913d03-4250-4f95-a128-c34ae8aa3b38", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "48ab4e08-13e9-486e-b19e-35c5b0377bcf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 2.8800000000000026, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9abf6197-9c36-4bd6-80be-28ef1ea479ad", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "578af9a7-8038-49a4-87c8-7974a3e8fa28", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 3.0600000000000023, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "edb41aba-765a-4d95-b589-a66eddafcf83", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "be6c4995-9859-4d0a-9fe9-1355ba40b8da", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 3.1799999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this is", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8e71c187-81da-418d-8409-d7125dc62936", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "adafee22-2c96-4b9e-80d0-a92c12f7d82c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 3.3000000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this is qu", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "38b864d0-39eb-44fa-8806-0812575e3af2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d81d8c02-1c5f-4143-897c-b8db8e5f7b21", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 3.3599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this is quite", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c1169f41-37ff-4cf2-913b-9e76e264e785", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3def70d4-fc49-447a-8856-e6340dc6f5ee", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 3.6000000000000014, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this is quite a", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "89d5bac8-8603-4a48-8597-3f2af3786b69", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "540ab8d5-e7ef-41c6-9216-9fcb5166b1ab", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 3.7200000000000024, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this is quite a prof", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "71e21b15-ec3d-40f7-82ad-982a65dc6a85", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ae24f945-ba7b-4450-bcc1-efe41d232049", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 3.900000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this is quite a profound", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "00af6061-e198-48f0-b5f7-d511b7fbdaaf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e0ccaa61-ca0d-4f14-919c-00208c0d9a90", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 4.260000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My—this, this, this is not me being mean. I think this is quite a profound, actu", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + }, + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "072d1680-15b1-4d4b-9797-ab3bee8f6ec6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bf6a7b54-73a6-4d05-ae90-1426307f2963", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.54, + "duration": 0.0600000000000005, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " My", + "words": [ + { + "word": " My", + "start": 15.54, + "end": 15.6, + "confidence": 0.797, + "speaker": 1, + "punctuated_word": " My", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e3731a54-4663-4103-ab32-2d5428b15e16", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ea663fd6-a484-4a83-b731-3e763f7f2567", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 3.9000000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actu", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6e303099-4b89-45fb-9b2e-6acbc2cc95ba", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ef28d357-551c-42e5-9357-4bdd391dbc6b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 4.200000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actuall", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "75075dcb-5ecb-4b62-bbf0-9a4f2a85bae9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "11f29da4-3f52-4290-827b-c03110ea85ae", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 4.3199999999999985, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually,", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2de8fd3c-b275-4b07-8b2c-b98c92cc59a4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eb557e43-db95-4b3d-9157-40d764537134", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 4.92, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1e725b93-e701-4107-a3af-b1a2d27fd823", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eb6e148f-a717-4c3f-ae57-5687c8776a26", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 5.339999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is y", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " y", + "start": 21.18, + "end": 21.24, + "confidence": 0.993, + "speaker": 1, + "punctuated_word": " y", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5ad67ba2-b0f4-4efc-9888-3918fe6fd6c9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "828338a7-a76a-42ac-927d-89df0c44d596", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 5.459999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is you", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " y", + "start": 21.18, + "end": 21.24, + "confidence": 0.993, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 21.3, + "end": 21.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ade92ba0-6e35-4100-91a8-9779a40ede12", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b5ae58f1-ed0d-4027-bdc5-744fc1a2859d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 5.58, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is you should", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " y", + "start": 21.18, + "end": 21.24, + "confidence": 0.993, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 21.3, + "end": 21.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 21.36, + "end": 21.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 21.42, + "end": 21.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d7fa9376-459e-415b-b97a-5d813038fe87", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "578b709e-ca2f-411e-858d-b82e421686d1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 5.880000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is you should Google", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + }, + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " y", + "start": 21.18, + "end": 21.24, + "confidence": 0.993, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 21.3, + "end": 21.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 21.36, + "end": 21.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 21.42, + "end": 21.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " Google", + "start": 21.72, + "end": 21.78, + "confidence": 0.985, + "speaker": 1, + "punctuated_word": " Google", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7121a508-c8a9-43b4-9f29-acde9740be6f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b9e0fb1d-1d41-453c-a3e3-9c75a4ec2708", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 15.9, + "duration": 1.799999999999999, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "—this, this, this is not me being", + "words": [ + { + "word": "—", + "start": 15.9, + "end": 15.96, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": "—", + "language": null + }, + { + "word": "th", + "start": 16.32, + "end": 16.38, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "th", + "language": null + }, + { + "word": "is,", + "start": 16.44, + "end": 16.5, + "confidence": 0.952, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " th", + "start": 16.62, + "end": 16.68, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "is,", + "start": 16.68, + "end": 16.74, + "confidence": 0.896, + "speaker": 1, + "punctuated_word": "is,", + "language": null + }, + { + "word": " this", + "start": 16.8, + "end": 16.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 16.92, + "end": 16.98, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " not", + "start": 17.04, + "end": 17.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " not", + "language": null + }, + { + "word": " me", + "start": 17.4, + "end": 17.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": " being", + "start": 17.64, + "end": 17.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " being", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a2925387-f232-4d24-b0fe-0b9fae930ac0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a5203f66-25bc-4c21-a84e-9a75db8d7c33", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.0, + "duration": 3.780000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " mean. I think this is quite a profound, actually, is you should Google", + "words": [ + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " y", + "start": 21.18, + "end": 21.24, + "confidence": 0.993, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 21.3, + "end": 21.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 21.36, + "end": 21.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 21.42, + "end": 21.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " Google", + "start": 21.72, + "end": 21.78, + "confidence": 0.985, + "speaker": 1, + "punctuated_word": " Google", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e08811dd-12f2-464a-865e-f6f55d456e98", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b8577d84-a000-4339-aea3-7a16129b414c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.0, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " mean. I think this is quite a profound, actually, is you should Google it", + "words": [ + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " y", + "start": 21.18, + "end": 21.24, + "confidence": 0.993, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 21.3, + "end": 21.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 21.36, + "end": 21.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 21.42, + "end": 21.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " Google", + "start": 21.72, + "end": 21.78, + "confidence": 0.985, + "speaker": 1, + "punctuated_word": " Google", + "language": null + }, + { + "word": " it", + "start": 22.02, + "end": 22.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " it", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8b9a0e23-47da-4d3b-ab3a-54c9e7399a6a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "21418256-c4ee-4e53-ac0d-f2fb8adf6600", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.0, + "duration": 4.379999999999999, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " mean. I think this is quite a profound, actually, is you should Google it.", + "words": [ + { + "word": " me", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " me", + "language": null + }, + { + "word": "an.", + "start": 18.12, + "end": 18.18, + "confidence": 0.85, + "speaker": 1, + "punctuated_word": "an.", + "language": null + }, + { + "word": " I", + "start": 18.24, + "end": 18.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " I", + "language": null + }, + { + "word": " th", + "start": 18.3, + "end": 18.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " th", + "language": null + }, + { + "word": "ink", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ink", + "language": null + }, + { + "word": " this", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " this", + "language": null + }, + { + "word": " is", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " qu", + "start": 18.78, + "end": 18.84, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " qu", + "language": null + }, + { + "word": "ite", + "start": 18.84, + "end": 18.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ite", + "language": null + }, + { + "word": " a", + "start": 19.08, + "end": 19.14, + "confidence": 0.972, + "speaker": 1, + "punctuated_word": " a", + "language": null + }, + { + "word": " prof", + "start": 19.2, + "end": 19.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " prof", + "language": null + }, + { + "word": "ound", + "start": 19.38, + "end": 19.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ound", + "language": null + }, + { + "word": ",", + "start": 19.68, + "end": 19.74, + "confidence": 0.986, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " actu", + "start": 19.74, + "end": 19.8, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " actu", + "language": null + }, + { + "word": "all", + "start": 20.04, + "end": 20.1, + "confidence": 0.98, + "speaker": 1, + "punctuated_word": "all", + "language": null + }, + { + "word": "y,", + "start": 20.16, + "end": 20.22, + "confidence": 0.651, + "speaker": 1, + "punctuated_word": "y,", + "language": null + }, + { + "word": " is", + "start": 20.76, + "end": 20.82, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " is", + "language": null + }, + { + "word": " y", + "start": 21.18, + "end": 21.24, + "confidence": 0.993, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 21.3, + "end": 21.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 21.36, + "end": 21.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 21.42, + "end": 21.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " Google", + "start": 21.72, + "end": 21.78, + "confidence": 0.985, + "speaker": 1, + "punctuated_word": " Google", + "language": null + }, + { + "word": " it", + "start": 22.02, + "end": 22.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " it", + "language": null + }, + { + "word": ".", + "start": 22.32, + "end": 22.38, + "confidence": 0.729, + "speaker": 1, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fdc3cc12-3f06-4f12-bb21-b3b00d02a8bc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "56a0d042-a5f2-4c52-b999-92b85b9bbfb2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.98, + "duration": 0.05999999999999872, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " O", + "words": [ + { + "word": " O", + "start": 22.98, + "end": 23.04, + "confidence": 0.592, + "speaker": 2, + "punctuated_word": " O", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "14bf7194-c13a-4ef5-bb15-aa06d35f8a08", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6b796ebf-4cb5-4864-86a8-170b7bd8cd32", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.98, + "duration": 0.120000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Oh,", + "words": [ + { + "word": " O", + "start": 22.98, + "end": 23.04, + "confidence": 0.592, + "speaker": 2, + "punctuated_word": " O", + "language": null + }, + { + "word": "h,", + "start": 23.04, + "end": 23.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "h,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "08ef3cf1-6112-44ec-bcb6-1a9718f8007b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ebd7c0ab-983e-42d6-afaf-050eed1d94cf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.98, + "duration": 0.23999999999999844, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Oh, ye", + "words": [ + { + "word": " O", + "start": 22.98, + "end": 23.04, + "confidence": 0.592, + "speaker": 2, + "punctuated_word": " O", + "language": null + }, + { + "word": "h,", + "start": 23.04, + "end": 23.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "h,", + "language": null + }, + { + "word": " ye", + "start": 23.16, + "end": 23.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " ye", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c4655f7c-cde3-4358-bc37-e72c12023be1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "19229218-9c37-4634-bea2-eb04e6d15752", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.98, + "duration": 0.35999999999999943, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Oh, yeah.", + "words": [ + { + "word": " O", + "start": 22.98, + "end": 23.04, + "confidence": 0.592, + "speaker": 2, + "punctuated_word": " O", + "language": null + }, + { + "word": "h,", + "start": 23.04, + "end": 23.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "h,", + "language": null + }, + { + "word": " ye", + "start": 23.16, + "end": 23.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " ye", + "language": null + }, + { + "word": "ah.", + "start": 23.28, + "end": 23.34, + "confidence": 0.964, + "speaker": 2, + "punctuated_word": "ah.", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "60c58b79-e491-40ca-9946-f2c2e188d07a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e9a425fd-c2af-440b-ae31-e675c282854e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 0.11999999999999744, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Lik", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1da5430b-9861-4f4c-b1e3-50555f56d831", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "09f662c1-8151-41b3-bd37-4917a0af2979", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 0.23999999999999844, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like,", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "deea921b-1bca-4449-be1c-ed92164082b5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b089c71d-77a2-4231-8575-43d6dea905a4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 0.23999999999999844, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like,", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7b731fb8-1a8d-4896-a6d6-b897b420cfdf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a24d458f-26d4-48d3-9e53-7081e9b20ea8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 2.2799999999999976, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6d4b63d3-45aa-4f03-8183-3911a2f18ce9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fcb459c0-f1a7-49d7-b9bf-5c4da4bcd2b5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 2.34, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "37f14157-1289-43a0-934c-d49e44f1cce1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ce77cda5-15ea-4328-a92c-fb36fef7191b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 2.4599999999999973, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "aca59d6e-1ba4-42ee-a433-94342c8b5e03", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bf53b41e-58ec-4b47-90d3-9d1a8111e943", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 2.8200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the,", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d9690c96-9a36-48e6-b579-eda3c6ea6b1b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6b0f091e-3456-49be-b568-27debfc50d7c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 2.9399999999999977, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, u", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "96db9710-83ce-4c83-9248-58447a1fd485", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d5a3c1a4-6f25-4707-9410-148367232a70", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 3.0599999999999987, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh,", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4669c719-a3a6-4138-b7e1-13d5b7904316", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "82e68c4c-f6fe-47ad-b1a3-0ddfa9d5f61b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 3.3599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, lik", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6b6593a3-e446-408b-8473-a44c9eeb0111", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1ce01f3d-3e43-4913-a247-ab6258747c4c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 3.4800000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like,", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6f137225-0dc4-49f9-a21e-e866265879eb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2db83da0-6d11-4d56-8445-5d2f5bfad199", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 3.599999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, sk", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cbf497a5-b4fa-4d73-8ba0-8e6a5edb0885", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b99953c7-5338-40ab-bfc8-35778923bc95", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skill", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "10213735-b7b4-428b-a1ef-6932853da8b9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cf7ad5db-137d-4c65-a066-53de003ffdd5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 4.02, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3337f83c-2ed9-4983-bd33-741a40857e61", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d532958a-445c-409c-93b4-1369b89f2434", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "33e0094e-c3e9-43f6-8bad-a7581048f543", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0d42d720-1a1b-49db-b676-fe772d603fcc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that y", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1769ff5b-069a-4565-8d80-518dc98b318a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "43671ccc-6b5b-493b-9f65-0108a6111422", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 4.439999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that you", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 28.5, + "end": 28.56, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "43e6f912-7bea-4776-8409-87126f65202d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "382ffc5d-4ecc-4fa7-8a65-b22e553af691", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 4.559999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that you sho", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 28.5, + "end": 28.56, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 28.62, + "end": 28.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9abbc9d0-ca6b-4faa-a928-8a01d8f17b35", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "391d0a5b-595e-47d5-84ef-ac817936d7c1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 4.619999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that you should", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 28.5, + "end": 28.56, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 28.62, + "end": 28.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 28.68, + "end": 28.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "15ed4e75-de45-4a49-a162-5e6f856a8cef", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "75edde83-6349-429b-8498-4dd3f05b4a02", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 4.800000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that you should really", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 28.5, + "end": 28.56, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 28.62, + "end": 28.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 28.68, + "end": 28.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " re", + "start": 28.8, + "end": 28.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " re", + "language": null + }, + { + "word": "ally", + "start": 28.86, + "end": 28.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ally", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "77b424c8-8a34-47fb-9244-2cae4614b9c9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9c447bff-4e99-42f3-95a6-5c7155758a64", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 5.099999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that you should really ac", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 28.5, + "end": 28.56, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 28.62, + "end": 28.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 28.68, + "end": 28.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " re", + "start": 28.8, + "end": 28.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " re", + "language": null + }, + { + "word": "ally", + "start": 28.86, + "end": 28.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ally", + "language": null + }, + { + "word": " ac", + "start": 29.16, + "end": 29.22, + "confidence": 0.976, + "speaker": 1, + "punctuated_word": " ac", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a8e82a78-2ced-4c07-a164-9a580b4801ab", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "11cf3cf9-2cf2-41fd-9313-ba930f9e5519", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that you should really acqu", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 28.5, + "end": 28.56, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 28.62, + "end": 28.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 28.68, + "end": 28.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " re", + "start": 28.8, + "end": 28.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " re", + "language": null + }, + { + "word": "ally", + "start": 28.86, + "end": 28.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ally", + "language": null + }, + { + "word": " ac", + "start": 29.16, + "end": 29.22, + "confidence": 0.976, + "speaker": 1, + "punctuated_word": " ac", + "language": null + }, + { + "word": "qu", + "start": 29.28, + "end": 29.34, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "qu", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "20589790-21d8-4a56-9255-d3694af43915", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "748b261d-9db2-49fe-be38-49a6b2f73be6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.12, + "duration": 5.399999999999999, + "is_final": true, + "speech_final": true, + "from_finalize": true, + "channel": { + "alternatives": [ + { + "transcript": " Like, one of the, uh, like, skills that you should really acquire.", + "words": [ + { + "word": " L", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " L", + "language": null + }, + { + "word": "ik", + "start": 24.18, + "end": 24.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ik", + "language": null + }, + { + "word": "e,", + "start": 24.3, + "end": 24.36, + "confidence": 0.963, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " one", + "start": 26.34, + "end": 26.4, + "confidence": 0.884, + "speaker": 1, + "punctuated_word": " one", + "language": null + }, + { + "word": " of", + "start": 26.4, + "end": 26.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " of", + "language": null + }, + { + "word": " the", + "start": 26.52, + "end": 26.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " the", + "language": null + }, + { + "word": ",", + "start": 26.88, + "end": 26.94, + "confidence": 0.989, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " u", + "start": 27.0, + "end": 27.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " u", + "language": null + }, + { + "word": "h,", + "start": 27.12, + "end": 27.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "h,", + "language": null + }, + { + "word": " lik", + "start": 27.42, + "end": 27.48, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " lik", + "language": null + }, + { + "word": "e,", + "start": 27.54, + "end": 27.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "e,", + "language": null + }, + { + "word": " sk", + "start": 27.66, + "end": 27.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sk", + "language": null + }, + { + "word": "ill", + "start": 27.78, + "end": 27.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ill", + "language": null + }, + { + "word": "s", + "start": 28.08, + "end": 28.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "s", + "language": null + }, + { + "word": " that", + "start": 28.2, + "end": 28.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " that", + "language": null + }, + { + "word": " y", + "start": 28.38, + "end": 28.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " y", + "language": null + }, + { + "word": "ou", + "start": 28.5, + "end": 28.56, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ou", + "language": null + }, + { + "word": " sho", + "start": 28.62, + "end": 28.68, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " sho", + "language": null + }, + { + "word": "uld", + "start": 28.68, + "end": 28.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "uld", + "language": null + }, + { + "word": " re", + "start": 28.8, + "end": 28.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " re", + "language": null + }, + { + "word": "ally", + "start": 28.86, + "end": 28.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "ally", + "language": null + }, + { + "word": " ac", + "start": 29.16, + "end": 29.22, + "confidence": 0.976, + "speaker": 1, + "punctuated_word": " ac", + "language": null + }, + { + "word": "qu", + "start": 29.28, + "end": 29.34, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "qu", + "language": null + }, + { + "word": "ire", + "start": 29.4, + "end": 29.46, + "confidence": 0.946, + "speaker": 1, + "punctuated_word": "ire", + "language": null + }, + { + "word": ".", + "start": 29.46, + "end": 29.52, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4d43ec98-9eda-4ed6-9bec-7ebd72f18e70", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2c12d44d-b2fa-4c31-a370-b2a73200b49f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + } +] diff --git a/crates/transcript/src/accumulator/mod.rs b/crates/transcript/src/accumulator/mod.rs new file mode 100644 index 0000000000..7d346ce32e --- /dev/null +++ b/crates/transcript/src/accumulator/mod.rs @@ -0,0 +1,432 @@ +mod channel; +mod words; + +use std::collections::BTreeMap; + +use owhisper_interface::stream::StreamResponse; + +pub use words::{TranscriptUpdate, TranscriptWord}; + +use channel::ChannelState; +use words::{assemble, ensure_space_prefix}; + +/// Accumulates streaming ASR responses into clean, deduplicated `TranscriptWord` sequences. +/// +/// Each `process` call returns a `TranscriptUpdate` with: +/// - `new_final_words`: words that became final since the last update (ready to persist) +/// - `partial_words`: current in-progress words across all channels (for live display) +/// +/// Call `flush` at session end to drain any held/partial words that were never finalized. +pub struct TranscriptAccumulator { + channels: BTreeMap, +} + +impl TranscriptAccumulator { + pub fn new() -> Self { + Self { + channels: BTreeMap::new(), + } + } + + pub fn process(&mut self, response: &StreamResponse) -> Option { + let (is_final, channel, channel_index) = match response { + StreamResponse::TranscriptResponse { + is_final, + channel, + channel_index, + .. + } => (*is_final, channel, channel_index), + _ => return None, + }; + + let alt = channel.alternatives.first()?; + if alt.words.is_empty() && alt.transcript.is_empty() { + return None; + } + + let ch = channel_index.first().copied().unwrap_or(0); + let words = assemble(&alt.words, &alt.transcript, ch); + if words.is_empty() { + return None; + } + + let state = self.channels.entry(ch).or_insert_with(ChannelState::new); + + let new_final_words = if is_final { + state.apply_final(words) + } else { + state.apply_partial(words); + vec![] + }; + + Some(TranscriptUpdate { + new_final_words, + partial_words: self.all_partials(), + }) + } + + pub fn flush(&mut self) -> TranscriptUpdate { + let new_final_words = self + .channels + .values_mut() + .flat_map(|state| state.drain()) + .collect(); + + TranscriptUpdate { + new_final_words, + partial_words: vec![], + } + } + + fn all_partials(&self) -> Vec { + let mut partials: Vec = self + .channels + .values() + .flat_map(|state| state.partials().iter().cloned()) + .collect(); + + if let Some(first) = partials.first_mut() { + ensure_space_prefix(first); + } + + partials + } +} + +impl Default for TranscriptAccumulator { + fn default() -> Self { + Self::new() + } +} + +#[cfg(test)] +mod tests { + use super::*; + use owhisper_interface::stream::{Alternatives, Channel, Metadata, ModelInfo}; + + fn raw_word( + text: &str, + start: f64, + end: f64, + speaker: Option, + ) -> owhisper_interface::stream::Word { + owhisper_interface::stream::Word { + word: text.to_string(), + start, + end, + confidence: 1.0, + speaker, + punctuated_word: Some(text.to_string()), + language: None, + } + } + + fn response( + words: &[(&str, f64, f64, Option)], + transcript: &str, + is_final: bool, + channel_idx: i32, + ) -> StreamResponse { + StreamResponse::TranscriptResponse { + start: 0.0, + duration: 0.0, + is_final, + speech_final: is_final, + from_finalize: false, + channel: Channel { + alternatives: vec![Alternatives { + transcript: transcript.to_string(), + words: words + .iter() + .map(|&(t, s, e, sp)| raw_word(t, s, e, sp)) + .collect(), + confidence: 1.0, + languages: vec![], + }], + }, + metadata: Metadata { + request_id: String::new(), + model_info: ModelInfo { + name: String::new(), + version: String::new(), + arch: String::new(), + }, + model_uuid: String::new(), + extra: None, + }, + channel_index: vec![channel_idx], + } + } + + fn partial(words: &[(&str, f64, f64)], transcript: &str) -> StreamResponse { + let ws: Vec<_> = words.iter().map(|&(t, s, e)| (t, s, e, None)).collect(); + response(&ws, transcript, false, 0) + } + + fn finalize(words: &[(&str, f64, f64)], transcript: &str) -> StreamResponse { + let ws: Vec<_> = words.iter().map(|&(t, s, e)| (t, s, e, None)).collect(); + response(&ws, transcript, true, 0) + } + + fn replay(responses: &[StreamResponse]) -> Vec { + let mut acc = TranscriptAccumulator::new(); + let mut words = Vec::new(); + + for r in responses { + if let Some(update) = acc.process(r) { + words.extend(update.new_final_words); + } + } + + words.extend(acc.flush().new_final_words); + words + } + + fn load_fixture(name: &str) -> Vec { + let raw = match name { + "deepgram_1" => include_str!("fixtures/deepgram_1.json"), + "soniox_1" => include_str!("fixtures/soniox_1.json"), + _ => panic!("unknown fixture: {name}"), + }; + serde_json::from_str(raw).expect("fixture must parse as StreamResponse[]") + } + + fn assert_valid_output(words: &[TranscriptWord]) { + assert!(!words.is_empty(), "must produce words"); + + assert!( + words.iter().all(|w| !w.id.is_empty()), + "all words must have IDs" + ); + + let ids: std::collections::HashSet<_> = words.iter().map(|w| &w.id).collect(); + assert_eq!(ids.len(), words.len(), "IDs must be unique"); + + for w in words { + assert!( + !w.text.trim().is_empty(), + "word text must not be blank: {w:?}" + ); + assert!( + w.text.starts_with(' '), + "word must start with space: {:?}", + w.text + ); + } + + for ch in words + .iter() + .map(|w| w.channel) + .collect::>() + { + let cw: Vec<_> = words.iter().filter(|w| w.channel == ch).collect(); + assert!( + cw.windows(2).all(|w| w[0].start_ms <= w[1].start_ms), + "channel {ch} must be chronological" + ); + } + } + + #[test] + fn partial_update_exposes_current_words() { + let mut acc = TranscriptAccumulator::new(); + + let update = acc + .process(&partial( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 0.9)], + " Hello world", + )) + .unwrap(); + + assert!(update.new_final_words.is_empty()); + assert_eq!(update.partial_words.len(), 2); + assert_eq!( + update + .partial_words + .iter() + .map(|w| &w.text) + .collect::>(), + [" Hello", " world"] + ); + } + + #[test] + fn partial_splices_into_existing_window() { + let mut acc = TranscriptAccumulator::new(); + + acc.process(&partial( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 0.9)], + " Hello world", + )); + + let update = acc + .process(&partial( + &[ + (" Hello", 0.1, 0.5), + (" world", 0.6, 0.9), + (" today", 1.0, 1.3), + ], + " Hello world today", + )) + .unwrap(); + + assert_eq!(update.partial_words.len(), 3); + assert_eq!( + update + .partial_words + .iter() + .map(|w| &w.text) + .collect::>(), + [" Hello", " world", " today"] + ); + } + + #[test] + fn final_emits_prefix_and_holds_last() { + let mut acc = TranscriptAccumulator::new(); + + acc.process(&partial( + &[(" Hello", 0.1, 0.5), (" world", 0.55, 0.9)], + " Hello world", + )); + + let update = acc + .process(&finalize( + &[(" Hello", 0.1, 0.5), (" world", 0.55, 0.9)], + " Hello world", + )) + .unwrap(); + + assert_eq!(update.new_final_words.len(), 1); + assert_eq!(update.new_final_words[0].text, " Hello"); + assert!(update.partial_words.is_empty()); + + let flushed = acc.flush(); + assert_eq!(flushed.new_final_words.len(), 1); + assert_eq!(flushed.new_final_words[0].text, " world"); + } + + #[test] + fn final_deduplicates_repeated_response() { + let mut acc = TranscriptAccumulator::new(); + + let r = finalize( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 0.9)], + " Hello world", + ); + + let first = acc.process(&r).unwrap(); + let second = acc.process(&r).unwrap(); + + assert!(!first.new_final_words.is_empty()); + assert!(second.new_final_words.is_empty()); + } + + #[test] + fn final_clears_overlapping_partials() { + let mut acc = TranscriptAccumulator::new(); + + acc.process(&partial( + &[ + (" Hello", 0.1, 0.5), + (" world", 0.6, 1.0), + (" test", 1.1, 1.5), + ], + " Hello world test", + )); + + let update = acc + .process(&finalize( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 1.0)], + " Hello world", + )) + .unwrap(); + + assert_eq!(update.partial_words.len(), 1); + assert_eq!(update.partial_words[0].text, " test"); + } + + #[test] + fn all_final_words_have_ids() { + let mut acc = TranscriptAccumulator::new(); + + let update = acc + .process(&finalize( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 0.9)], + " Hello world", + )) + .unwrap(); + + assert!(update.new_final_words.iter().all(|w| !w.id.is_empty())); + + let flushed = acc.flush(); + assert!(flushed.new_final_words.iter().all(|w| !w.id.is_empty())); + } + + #[test] + fn flush_drains_held_word() { + let mut acc = TranscriptAccumulator::new(); + + acc.process(&finalize( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 0.9)], + " Hello world", + )); + + let flushed = acc.flush(); + + assert_eq!(flushed.new_final_words.len(), 1); + assert_eq!(flushed.new_final_words[0].text, " world"); + assert!(!flushed.new_final_words[0].id.is_empty()); + } + + #[test] + fn flush_drains_partials_beyond_final_range() { + let mut acc = TranscriptAccumulator::new(); + + acc.process(&partial(&[(" later", 5.0, 5.5)], " later")); + + acc.process(&finalize( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 0.9)], + " Hello world", + )); + + let flushed = acc.flush(); + + let texts: Vec<_> = flushed.new_final_words.iter().map(|w| &w.text).collect(); + assert!( + texts.contains(&&" world".to_string()) || texts.contains(&&" later".to_string()), + "flush must drain held + partials: {texts:?}" + ); + assert!(flushed.new_final_words.iter().all(|w| !w.id.is_empty())); + } + + #[test] + fn flush_on_empty_accumulator_is_empty() { + let mut acc = TranscriptAccumulator::new(); + let flushed = acc.flush(); + assert!(flushed.new_final_words.is_empty()); + assert!(flushed.partial_words.is_empty()); + } + + #[test] + fn non_transcript_responses_produce_no_update() { + let mut acc = TranscriptAccumulator::new(); + let ignored = StreamResponse::TerminalResponse { + request_id: "r".into(), + created: "now".into(), + duration: 1.0, + channels: 1, + }; + assert!(acc.process(&ignored).is_none()); + } + + #[test] + fn deepgram_fixture_produces_valid_output() { + assert_valid_output(&replay(&load_fixture("deepgram_1"))); + } + + #[test] + fn soniox_fixture_produces_valid_output() { + assert_valid_output(&replay(&load_fixture("soniox_1"))); + } +} diff --git a/crates/transcript/src/accumulator/words.rs b/crates/transcript/src/accumulator/words.rs new file mode 100644 index 0000000000..70580cf798 --- /dev/null +++ b/crates/transcript/src/accumulator/words.rs @@ -0,0 +1,385 @@ +use owhisper_interface::stream::Word; +use uuid::Uuid; + +#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, specta::Type)] +pub struct TranscriptWord { + pub id: String, + pub text: String, + pub start_ms: i64, + pub end_ms: i64, + pub channel: i32, + pub speaker: Option, +} + +#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, specta::Type)] +pub struct TranscriptUpdate { + pub new_final_words: Vec, + pub partial_words: Vec, +} + +// ── Assembly ───────────────────────────────────────────────────────────────── + +/// Assemble raw ASR tokens into merged `TranscriptWord`s, recovering spacing +/// from the transcript string. Adjacent tokens without a space prefix and +/// within 120ms are merged (handles split punctuation/contractions). +pub(super) fn assemble(raw: &[Word], transcript: &str, channel: i32) -> Vec { + let spaced = spacing_from_transcript(raw, transcript); + let mut result: Vec = Vec::new(); + + for (w, text) in raw.iter().zip(&spaced) { + let start_ms = (w.start * 1000.0).round() as i64; + let end_ms = (w.end * 1000.0).round() as i64; + + let should_merge = !text.starts_with(' ') + && result + .last() + .map_or(false, |prev| start_ms - prev.end_ms <= 120); + + if should_merge { + let last = result.last_mut().unwrap(); + last.text.push_str(text); + last.end_ms = end_ms; + if last.speaker.is_none() { + last.speaker = w.speaker; + } + } else { + result.push(TranscriptWord { + id: String::new(), + text: text.clone(), + start_ms, + end_ms, + channel, + speaker: w.speaker, + }); + } + } + + result +} + +fn spacing_from_transcript(raw: &[Word], transcript: &str) -> Vec { + let mut result = Vec::with_capacity(raw.len()); + let mut pos = 0; + + for w in raw { + let text = w.punctuated_word.as_deref().unwrap_or(&w.word); + let trimmed = text.trim(); + + if trimmed.is_empty() { + result.push(text.to_string()); + continue; + } + + match transcript[pos..].find(trimmed) { + Some(found) => { + let abs = pos + found; + result.push(format!("{}{trimmed}", &transcript[pos..abs])); + pos = abs + trimmed.len(); + } + None => result.push(text.to_string()), + } + } + + result +} + +// ── Pipeline stages ────────────────────────────────────────────────────────── + +/// Drop words already covered by the watermark (deduplication). +pub(super) fn dedup(words: Vec, watermark: i64) -> Vec { + words + .into_iter() + .skip_while(|w| w.end_ms <= watermark) + .collect() +} + +/// Stitch a held-back word with the front of a new batch, then hold back +/// the last word for the next boundary. ASR can split tokens across responses; +/// this lets us re-join them before emitting. +/// +/// Does NOT enforce spacing — callers apply `ensure_space_prefix` at output time, +/// so that `should_stitch` can still inspect raw spacing to decide merges. +pub(super) fn stitch( + held: Option, + mut words: Vec, +) -> (Vec, Option) { + if words.is_empty() { + return (held.into_iter().collect(), None); + } + + if let Some(h) = held { + if should_stitch(&h, &words[0]) { + words[0] = merge_words(h, words[0].clone()); + } else { + words.insert(0, h); + } + } + + let new_held = words.pop(); + (words, new_held) +} + +/// Replace the time range covered by `incoming` within `existing`. +pub(super) fn splice( + existing: &[TranscriptWord], + incoming: Vec, +) -> Vec { + let first_start = incoming.first().map_or(0, |w| w.start_ms); + let last_end = incoming.last().map_or(0, |w| w.end_ms); + + existing + .iter() + .filter(|w| w.end_ms <= first_start) + .cloned() + .chain(incoming) + .chain(existing.iter().filter(|w| w.start_ms >= last_end).cloned()) + .collect() +} + +/// Remove partials that overlap with the finalized time range. +pub(super) fn strip_overlap(partials: Vec, final_end: i64) -> Vec { + partials + .into_iter() + .filter(|w| w.start_ms > final_end) + .collect() +} + +// ── Word-level transforms ──────────────────────────────────────────────────── + +pub(super) fn assign_id(mut w: TranscriptWord) -> TranscriptWord { + w.id = Uuid::new_v4().to_string(); + w +} + +pub(super) fn ensure_space_prefix(w: &mut TranscriptWord) { + if !w.text.starts_with(' ') { + w.text.insert(0, ' '); + } +} + +fn should_stitch(tail: &TranscriptWord, head: &TranscriptWord) -> bool { + !head.text.starts_with(' ') && (head.start_ms - tail.end_ms) <= 300 +} + +fn merge_words(mut left: TranscriptWord, right: TranscriptWord) -> TranscriptWord { + left.text.push_str(&right.text); + left.end_ms = right.end_ms; + if left.speaker.is_none() { + left.speaker = right.speaker; + } + left +} + +#[cfg(test)] +mod tests { + use super::*; + + fn raw_word(text: &str, start: f64, end: f64) -> Word { + Word { + word: text.to_string(), + start, + end, + confidence: 1.0, + speaker: None, + punctuated_word: Some(text.to_string()), + language: None, + } + } + + fn word(text: &str, start_ms: i64, end_ms: i64) -> TranscriptWord { + TranscriptWord { + id: Uuid::new_v4().to_string(), + text: text.to_string(), + start_ms, + end_ms, + channel: 0, + speaker: None, + } + } + + // ── spacing_from_transcript ────────────────────────────────────────── + + #[test] + fn spacing_recovered_from_transcript() { + let raw = vec![raw_word("Hello", 0.0, 0.5), raw_word("world", 0.6, 1.0)]; + let spaced = spacing_from_transcript(&raw, " Hello world"); + assert_eq!(spaced, [" Hello", " world"]); + } + + #[test] + fn spacing_falls_back_to_raw_when_not_found() { + let raw = vec![raw_word("Hello", 0.0, 0.5)]; + let spaced = spacing_from_transcript(&raw, "completely different"); + assert_eq!(spaced, ["Hello"]); + } + + // ── assemble ───────────────────────────────────────────────────────── + + #[test] + fn assemble_merges_attached_punctuation() { + let raw = vec![raw_word(" Hello", 0.0, 0.5), raw_word("'s", 0.51, 0.6)]; + let words = assemble(&raw, " Hello's", 0); + assert_eq!(words.len(), 1); + assert_eq!(words[0].text, " Hello's"); + assert_eq!(words[0].end_ms, 600); + } + + #[test] + fn assemble_does_not_merge_distant_tokens() { + let raw = vec![raw_word(" Hello", 0.0, 0.5), raw_word("world", 1.0, 1.5)]; + let words = assemble(&raw, " Hello world", 0); + assert_eq!(words.len(), 2); + } + + #[test] + fn assemble_does_not_merge_spaced_tokens() { + let raw = vec![raw_word(" Hello", 0.0, 0.5), raw_word(" world", 0.51, 1.0)]; + let words = assemble(&raw, " Hello world", 0); + assert_eq!(words.len(), 2); + } + + // ── dedup ──────────────────────────────────────────────────────────── + + #[test] + fn dedup_drops_words_at_or_before_watermark() { + let words = vec![ + word(" a", 0, 100), + word(" b", 100, 200), + word(" c", 200, 300), + ]; + let result = dedup(words, 200); + assert_eq!(result.len(), 1); + assert_eq!(result[0].text, " c"); + } + + #[test] + fn dedup_keeps_all_when_watermark_is_zero() { + let words = vec![word(" a", 0, 100), word(" b", 100, 200)]; + let result = dedup(words, 0); + assert_eq!(result.len(), 2); + } + + #[test] + fn dedup_returns_empty_when_all_covered() { + let words = vec![word(" a", 0, 100), word(" b", 100, 200)]; + let result = dedup(words, 200); + assert!(result.is_empty()); + } + + // ── stitch ─────────────────────────────────────────────────────────── + + #[test] + fn stitch_no_held_holds_last() { + let ws = vec![word(" Hello", 0, 500), word(" world", 600, 1000)]; + let (emitted, held) = stitch(None, ws); + assert_eq!(emitted.len(), 1); + assert_eq!(emitted[0].text, " Hello"); + assert_eq!(held.unwrap().text, " world"); + } + + #[test] + fn stitch_merges_spaceless_adjacent_head() { + let held = word(" Hello", 0, 500); + let ws = vec![word("'s", 550, 700)]; + let (emitted, held) = stitch(Some(held), ws); + assert!(emitted.is_empty()); + assert_eq!(held.unwrap().text, " Hello's"); + } + + #[test] + fn stitch_separates_spaced_head() { + let held = word(" Hello", 0, 500); + let ws = vec![word(" world", 600, 1000)]; + let (emitted, held) = stitch(Some(held), ws); + assert_eq!(emitted.len(), 1); + assert_eq!(emitted[0].text, " Hello"); + assert_eq!(held.unwrap().text, " world"); + } + + #[test] + fn stitch_separates_distant_spaceless_head() { + let held = word(" Hello", 0, 500); + let ws = vec![word("world", 1000, 1500)]; + let (emitted, held) = stitch(Some(held), ws); + assert_eq!(emitted.len(), 1); + assert_eq!(emitted[0].text, " Hello"); + assert_eq!(held.unwrap().text, "world"); + } + + #[test] + fn stitch_empty_batch_releases_held() { + let held = word(" Hello", 0, 500); + let (emitted, held) = stitch(Some(held), vec![]); + assert_eq!(emitted.len(), 1); + assert!(held.is_none()); + } + + #[test] + fn stitch_single_word_batch_yields_no_emission() { + let ws = vec![word(" Hello", 0, 500)]; + let (emitted, held) = stitch(None, ws); + assert!(emitted.is_empty()); + assert_eq!(held.unwrap().text, " Hello"); + } + + // ── splice ─────────────────────────────────────────────────────────── + + #[test] + fn splice_replaces_overlapping_range() { + let existing = vec![ + word(" a", 0, 100), + word(" b", 100, 200), + word(" c", 300, 400), + ]; + let incoming = vec![word(" B", 100, 200), word(" new", 200, 300)]; + let result = splice(&existing, incoming); + assert_eq!( + result.iter().map(|w| &w.text[..]).collect::>(), + [" a", " B", " new", " c"] + ); + } + + #[test] + fn splice_appends_when_no_overlap() { + let existing = vec![word(" a", 0, 100)]; + let incoming = vec![word(" b", 200, 300)]; + let result = splice(&existing, incoming); + assert_eq!(result.len(), 2); + } + + #[test] + fn splice_full_replacement() { + let existing = vec![word(" a", 0, 100), word(" b", 100, 200)]; + let incoming = vec![ + word(" x", 0, 100), + word(" y", 100, 200), + word(" z", 200, 300), + ]; + let result = splice(&existing, incoming); + assert_eq!( + result.iter().map(|w| &w.text[..]).collect::>(), + [" x", " y", " z"] + ); + } + + // ── strip_overlap ──────────────────────────────────────────────────── + + #[test] + fn strip_overlap_removes_covered_partials() { + let partials = vec![ + word(" a", 0, 100), + word(" b", 100, 200), + word(" c", 300, 400), + ]; + let result = strip_overlap(partials, 200); + assert_eq!(result.len(), 1); + assert_eq!(result[0].text, " c"); + } + + #[test] + fn strip_overlap_keeps_all_beyond_range() { + let partials = vec![word(" a", 300, 400), word(" b", 400, 500)]; + let result = strip_overlap(partials, 200); + assert_eq!(result.len(), 2); + } +} diff --git a/crates/transcript/src/lib.rs b/crates/transcript/src/lib.rs new file mode 100644 index 0000000000..2d5b405aa4 --- /dev/null +++ b/crates/transcript/src/lib.rs @@ -0,0 +1 @@ +pub mod accumulator; diff --git a/plugins/listener/Cargo.toml b/plugins/listener/Cargo.toml index f77051a000..e5635feeca 100644 --- a/plugins/listener/Cargo.toml +++ b/plugins/listener/Cargo.toml @@ -34,6 +34,8 @@ hypr-vad-ext = { workspace = true } hypr-vad2 = { workspace = true } tauri-plugin-fs-sync = { workspace = true } +hypr-transcript = { workspace = true } + owhisper-client = { workspace = true } owhisper-interface = { workspace = true } diff --git a/plugins/listener/js/bindings.gen.ts b/plugins/listener/js/bindings.gen.ts index 5dc56ebaaa..2b9a05f453 100644 --- a/plugins/listener/js/bindings.gen.ts +++ b/plugins/listener/js/bindings.gen.ts @@ -1,185 +1,319 @@ // @ts-nocheck +/** tauri-specta globals **/ +import { + Channel as TAURI_CHANNEL, + invoke as TAURI_INVOKE, +} from "@tauri-apps/api/core"; +import * as TAURI_API_EVENT from "@tauri-apps/api/event"; +import { type WebviewWindow as __WebviewWindow__ } from "@tauri-apps/api/webviewWindow"; // This file was generated by [tauri-specta](https://github.com/oscartbeaumont/tauri-specta). Do not edit this file manually. /** user-defined commands **/ - export const commands = { -async listMicrophoneDevices() : Promise> { + async listMicrophoneDevices(): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|list_microphone_devices") }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async getCurrentMicrophoneDevice() : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener|list_microphone_devices"), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async getCurrentMicrophoneDevice(): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|get_current_microphone_device") }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async getMicMuted() : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE( + "plugin:listener|get_current_microphone_device", + ), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async getMicMuted(): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|get_mic_muted") }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async setMicMuted(muted: boolean) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener|get_mic_muted"), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async setMicMuted(muted: boolean): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|set_mic_muted", { muted }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async startSession(params: SessionParams) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener|set_mic_muted", { muted }), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async startSession(params: SessionParams): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|start_session", { params }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async stopSession() : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener|start_session", { params }), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async stopSession(): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|stop_session") }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async getState() : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener|stop_session"), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async getState(): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|get_state") }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async isSupportedLanguagesLive(provider: string, model: string | null, languages: string[]) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener|get_state"), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async isSupportedLanguagesLive( + provider: string, + model: string | null, + languages: string[], + ): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|is_supported_languages_live", { provider, model, languages }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async suggestProvidersForLanguagesLive(languages: string[]) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE( + "plugin:listener|is_supported_languages_live", + { provider, model, languages }, + ), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async suggestProvidersForLanguagesLive( + languages: string[], + ): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|suggest_providers_for_languages_live", { languages }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async listDocumentedLanguageCodesLive() : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE( + "plugin:listener|suggest_providers_for_languages_live", + { languages }, + ), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async listDocumentedLanguageCodesLive(): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener|list_documented_language_codes_live") }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -} -} + return { + status: "ok", + data: await TAURI_INVOKE( + "plugin:listener|list_documented_language_codes_live", + ), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, +}; /** user-defined events **/ - export const events = __makeEvents__<{ -sessionDataEvent: SessionDataEvent, -sessionErrorEvent: SessionErrorEvent, -sessionLifecycleEvent: SessionLifecycleEvent, -sessionProgressEvent: SessionProgressEvent + sessionDataEvent: SessionDataEvent; + sessionErrorEvent: SessionErrorEvent; + sessionLifecycleEvent: SessionLifecycleEvent; + sessionProgressEvent: SessionProgressEvent; }>({ -sessionDataEvent: "plugin:listener:session-data-event", -sessionErrorEvent: "plugin:listener:session-error-event", -sessionLifecycleEvent: "plugin:listener:session-lifecycle-event", -sessionProgressEvent: "plugin:listener:session-progress-event" -}) + sessionDataEvent: "plugin:listener:session-data-event", + sessionErrorEvent: "plugin:listener:session-error-event", + sessionLifecycleEvent: "plugin:listener:session-lifecycle-event", + sessionProgressEvent: "plugin:listener:session-progress-event", +}); /** user-defined constants **/ - - /** user-defined types **/ -export type DegradedError = { type: "authentication_failed"; provider: string } | { type: "upstream_unavailable"; message: string } | { type: "connection_timeout" } | { type: "stream_error"; message: string } -export type SessionDataEvent = { type: "audio_amplitude"; session_id: string; mic: number; speaker: number } | { type: "mic_muted"; session_id: string; value: boolean } | { type: "stream_response"; session_id: string; response: StreamResponse } -export type SessionErrorEvent = { type: "audio_error"; session_id: string; error: string; device: string | null; is_fatal: boolean } | { type: "connection_error"; session_id: string; error: string } -export type SessionLifecycleEvent = { type: "inactive"; session_id: string; error: string | null } | { type: "active"; session_id: string; error?: DegradedError | null } | { type: "finalizing"; session_id: string } -export type SessionParams = { session_id: string; languages: string[]; onboarding: boolean; record_enabled: boolean; model: string; base_url: string; api_key: string; keywords: string[] } -export type SessionProgressEvent = { type: "audio_initializing"; session_id: string } | { type: "audio_ready"; session_id: string; device: string | null } | { type: "connecting"; session_id: string } | { type: "connected"; session_id: string; adapter: string } -export type State = "active" | "inactive" | "finalizing" -export type StreamAlternatives = { transcript: string; words: StreamWord[]; confidence: number; languages?: string[] } -export type StreamChannel = { alternatives: StreamAlternatives[] } -export type StreamExtra = { started_unix_millis: number } -export type StreamMetadata = { request_id: string; model_info: StreamModelInfo; model_uuid: string; extra?: StreamExtra } -export type StreamModelInfo = { name: string; version: string; arch: string } -export type StreamResponse = { type: "Results"; start: number; duration: number; is_final: boolean; speech_final: boolean; from_finalize: boolean; channel: StreamChannel; metadata: StreamMetadata; channel_index: number[] } | { type: "Metadata"; request_id: string; created: string; duration: number; channels: number } | { type: "SpeechStarted"; channel: number[]; timestamp: number } | { type: "UtteranceEnd"; channel: number[]; last_word_end: number } | { type: "Error"; error_code: number | null; error_message: string; provider: string } -export type StreamWord = { word: string; start: number; end: number; confidence: number; speaker: number | null; punctuated_word: string | null; language: string | null } - -/** tauri-specta globals **/ - -import { - invoke as TAURI_INVOKE, - Channel as TAURI_CHANNEL, -} from "@tauri-apps/api/core"; -import * as TAURI_API_EVENT from "@tauri-apps/api/event"; -import { type WebviewWindow as __WebviewWindow__ } from "@tauri-apps/api/webviewWindow"; +export type DegradedError = + | { type: "authentication_failed"; provider: string } + | { type: "upstream_unavailable"; message: string } + | { type: "connection_timeout" } + | { type: "stream_error"; message: string }; +export type SessionDataEvent = + | { + type: "audio_amplitude"; + session_id: string; + mic: number; + speaker: number; + } + | { type: "mic_muted"; session_id: string; value: boolean } + | { type: "stream_response"; session_id: string; response: StreamResponse } + | { + type: "transcript_update"; + session_id: string; + new_final_words: TranscriptWord[]; + partial_words: TranscriptWord[]; + }; +export type SessionErrorEvent = + | { + type: "audio_error"; + session_id: string; + error: string; + device: string | null; + is_fatal: boolean; + } + | { type: "connection_error"; session_id: string; error: string }; +export type SessionLifecycleEvent = + | { type: "inactive"; session_id: string; error: string | null } + | { type: "active"; session_id: string; error?: DegradedError | null } + | { type: "finalizing"; session_id: string }; +export type SessionParams = { + session_id: string; + languages: string[]; + onboarding: boolean; + record_enabled: boolean; + model: string; + base_url: string; + api_key: string; + keywords: string[]; +}; +export type SessionProgressEvent = + | { type: "audio_initializing"; session_id: string } + | { type: "audio_ready"; session_id: string; device: string | null } + | { type: "connecting"; session_id: string } + | { type: "connected"; session_id: string; adapter: string }; +export type State = "active" | "inactive" | "finalizing"; +export type StreamAlternatives = { + transcript: string; + words: StreamWord[]; + confidence: number; + languages?: string[]; +}; +export type StreamChannel = { alternatives: StreamAlternatives[] }; +export type StreamExtra = { started_unix_millis: number }; +export type StreamMetadata = { + request_id: string; + model_info: StreamModelInfo; + model_uuid: string; + extra?: StreamExtra; +}; +export type StreamModelInfo = { name: string; version: string; arch: string }; +export type StreamResponse = + | { + type: "Results"; + start: number; + duration: number; + is_final: boolean; + speech_final: boolean; + from_finalize: boolean; + channel: StreamChannel; + metadata: StreamMetadata; + channel_index: number[]; + } + | { + type: "Metadata"; + request_id: string; + created: string; + duration: number; + channels: number; + } + | { type: "SpeechStarted"; channel: number[]; timestamp: number } + | { type: "UtteranceEnd"; channel: number[]; last_word_end: number } + | { + type: "Error"; + error_code: number | null; + error_message: string; + provider: string; + }; +export type StreamWord = { + word: string; + start: number; + end: number; + confidence: number; + speaker: number | null; + punctuated_word: string | null; + language: string | null; +}; +export type TranscriptWord = { + id: string; + text: string; + start_ms: number; + end_ms: number; + channel: number; + speaker: number | null; +}; type __EventObj__ = { - listen: ( - cb: TAURI_API_EVENT.EventCallback, - ) => ReturnType>; - once: ( - cb: TAURI_API_EVENT.EventCallback, - ) => ReturnType>; - emit: null extends T - ? (payload?: T) => ReturnType - : (payload: T) => ReturnType; + listen: ( + cb: TAURI_API_EVENT.EventCallback, + ) => ReturnType>; + once: ( + cb: TAURI_API_EVENT.EventCallback, + ) => ReturnType>; + emit: null extends T + ? (payload?: T) => ReturnType + : (payload: T) => ReturnType; }; export type Result = - | { status: "ok"; data: T } - | { status: "error"; error: E }; + | { status: "ok"; data: T } + | { status: "error"; error: E }; function __makeEvents__>( - mappings: Record, + mappings: Record, ) { - return new Proxy( - {} as unknown as { - [K in keyof T]: __EventObj__ & { - (handle: __WebviewWindow__): __EventObj__; - }; - }, - { - get: (_, event) => { - const name = mappings[event as keyof T]; + return new Proxy( + {} as unknown as { + [K in keyof T]: __EventObj__ & { + (handle: __WebviewWindow__): __EventObj__; + }; + }, + { + get: (_, event) => { + const name = mappings[event as keyof T]; - return new Proxy((() => {}) as any, { - apply: (_, __, [window]: [__WebviewWindow__]) => ({ - listen: (arg: any) => window.listen(name, arg), - once: (arg: any) => window.once(name, arg), - emit: (arg: any) => window.emit(name, arg), - }), - get: (_, command: keyof __EventObj__) => { - switch (command) { - case "listen": - return (arg: any) => TAURI_API_EVENT.listen(name, arg); - case "once": - return (arg: any) => TAURI_API_EVENT.once(name, arg); - case "emit": - return (arg: any) => TAURI_API_EVENT.emit(name, arg); - } - }, - }); - }, - }, - ); + return new Proxy((() => {}) as any, { + apply: (_, __, [window]: [__WebviewWindow__]) => ({ + listen: (arg: any) => window.listen(name, arg), + once: (arg: any) => window.once(name, arg), + emit: (arg: any) => window.emit(name, arg), + }), + get: (_, command: keyof __EventObj__) => { + switch (command) { + case "listen": + return (arg: any) => TAURI_API_EVENT.listen(name, arg); + case "once": + return (arg: any) => TAURI_API_EVENT.once(name, arg); + case "emit": + return (arg: any) => TAURI_API_EVENT.emit(name, arg); + } + }, + }); + }, + }, + ); } diff --git a/plugins/listener/src/actors/listener/mod.rs b/plugins/listener/src/actors/listener/mod.rs index d1a3356688..ee1595142b 100644 --- a/plugins/listener/src/actors/listener/mod.rs +++ b/plugins/listener/src/actors/listener/mod.rs @@ -14,6 +14,7 @@ use owhisper_interface::{ControlMessage, MixedMessage}; use super::session::session_span; use crate::{DegradedError, SessionDataEvent, SessionErrorEvent, SessionProgressEvent}; +use hypr_transcript::accumulator::TranscriptAccumulator; use adapters::spawn_rx_task; @@ -50,6 +51,7 @@ pub struct ListenerState { tx: ChannelSender, rx_task: tokio::task::JoinHandle<()>, shutdown_tx: Option>, + accumulator: TranscriptAccumulator, } pub(super) enum ChannelSender { @@ -120,6 +122,7 @@ impl Actor for ListenerActor { tx, rx_task, shutdown_tx: Some(shutdown_tx), + accumulator: TranscriptAccumulator::new(), }; Ok(state) @@ -137,6 +140,17 @@ impl Actor for ListenerActor { let _ = shutdown_tx.send(()); let _ = (&mut state.rx_task).await; } + + let flush = state.accumulator.flush(); + if !flush.new_final_words.is_empty() { + let _ = (SessionDataEvent::TranscriptUpdate { + session_id: state.args.session_id.clone(), + new_final_words: flush.new_final_words, + partial_words: flush.partial_words, + }) + .emit(&state.args.app); + } + Ok(()) } @@ -209,6 +223,18 @@ impl Actor for ListenerActor { crate::actors::ChannelMode::MicAndSpeaker => {} } + if let Some(update) = state.accumulator.process(&response) { + if let Err(error) = (SessionDataEvent::TranscriptUpdate { + session_id: state.args.session_id.clone(), + new_final_words: update.new_final_words, + partial_words: update.partial_words, + }) + .emit(&state.args.app) + { + tracing::error!(?error, "transcript_update_emit_failed"); + } + } + if let Err(error) = (SessionDataEvent::StreamResponse { session_id: state.args.session_id.clone(), response: Box::new(response), diff --git a/plugins/listener/src/events.rs b/plugins/listener/src/events.rs index a8449f75eb..f3956d92e0 100644 --- a/plugins/listener/src/events.rs +++ b/plugins/listener/src/events.rs @@ -1,5 +1,7 @@ use owhisper_interface::stream::StreamResponse; +use hypr_transcript::accumulator::TranscriptWord; + #[macro_export] macro_rules! common_event_derives { ($item:item) => { @@ -80,5 +82,11 @@ common_event_derives! { session_id: String, response: Box, }, + #[serde(rename = "transcript_update")] + TranscriptUpdate { + session_id: String, + new_final_words: Vec, + partial_words: Vec, + }, } } diff --git a/plugins/listener2/Cargo.toml b/plugins/listener2/Cargo.toml index fc336f6c25..a4ab66fa67 100644 --- a/plugins/listener2/Cargo.toml +++ b/plugins/listener2/Cargo.toml @@ -19,6 +19,7 @@ tauri-plugin-settings = { workspace = true } hypr-audio-utils = { workspace = true } hypr-host = { workspace = true } hypr-language = { workspace = true } +hypr-transcript = { workspace = true } owhisper-client = { workspace = true, features = ["argmax"] } owhisper-interface = { workspace = true } diff --git a/plugins/listener2/js/bindings.gen.ts b/plugins/listener2/js/bindings.gen.ts index a7d3d873b1..f8658e8f7d 100644 --- a/plugins/listener2/js/bindings.gen.ts +++ b/plugins/listener2/js/bindings.gen.ts @@ -73,22 +73,16 @@ batchEvent: "plugin:listener2:batch-event" export type BatchAlternatives = { transcript: string; confidence: number; words?: BatchWord[] } export type BatchChannel = { alternatives: BatchAlternatives[] } -export type BatchEvent = { type: "batchStarted"; session_id: string } | { type: "batchResponse"; session_id: string; response: BatchResponse } | { type: "batchProgress"; session_id: string; response: StreamResponse; percentage: number } | { type: "batchFailed"; session_id: string; error: string } +export type BatchEvent = { type: "batchStarted"; session_id: string } | { type: "batchResponse"; session_id: string; response: BatchResponse } | { type: "batchProgress"; session_id: string; words: TranscriptWord[]; percentage: number } | { type: "batchFailed"; session_id: string; error: string } export type BatchParams = { session_id: string; provider: BatchProvider; file_path: string; model?: string | null; base_url: string; api_key: string; languages?: string[]; keywords?: string[] } export type BatchProvider = "deepgram" | "soniox" | "assemblyai" | "am" export type BatchResponse = { metadata: JsonValue; results: BatchResults } export type BatchResults = { channels: BatchChannel[] } export type BatchWord = { word: string; start: number; end: number; confidence: number; speaker: number | null; punctuated_word: string | null } export type JsonValue = null | boolean | number | string | JsonValue[] | Partial<{ [key in string]: JsonValue }> -export type StreamAlternatives = { transcript: string; words: StreamWord[]; confidence: number; languages?: string[] } -export type StreamChannel = { alternatives: StreamAlternatives[] } -export type StreamExtra = { started_unix_millis: number } -export type StreamMetadata = { request_id: string; model_info: StreamModelInfo; model_uuid: string; extra?: StreamExtra } -export type StreamModelInfo = { name: string; version: string; arch: string } -export type StreamResponse = { type: "Results"; start: number; duration: number; is_final: boolean; speech_final: boolean; from_finalize: boolean; channel: StreamChannel; metadata: StreamMetadata; channel_index: number[] } | { type: "Metadata"; request_id: string; created: string; duration: number; channels: number } | { type: "SpeechStarted"; channel: number[]; timestamp: number } | { type: "UtteranceEnd"; channel: number[]; last_word_end: number } | { type: "Error"; error_code: number | null; error_message: string; provider: string } -export type StreamWord = { word: string; start: number; end: number; confidence: number; speaker: number | null; punctuated_word: string | null; language: string | null } export type Subtitle = { tokens: Token[] } export type Token = { text: string; start_time: number; end_time: number; speaker: string | null } +export type TranscriptWord = { id: string; text: string; start_ms: number; end_ms: number; channel: number; speaker: number | null } export type VttWord = { text: string; start_ms: number; end_ms: number; speaker: string | null } /** tauri-specta globals **/ diff --git a/plugins/listener2/src/batch.rs b/plugins/listener2/src/batch.rs index 6c18bb0cc0..cc96e2d84e 100644 --- a/plugins/listener2/src/batch.rs +++ b/plugins/listener2/src/batch.rs @@ -3,6 +3,7 @@ use std::sync::{Arc, Mutex}; use std::time::Duration; use futures_util::StreamExt; +use hypr_transcript::accumulator::TranscriptAccumulator; use owhisper_client::{ AdapterKind, ArgmaxAdapter, AssemblyAIAdapter, DashScopeAdapter, DeepgramAdapter, ElevenLabsAdapter, FireworksAdapter, GladiaAdapter, HyprnoteAdapter, MistralAdapter, @@ -84,19 +85,35 @@ pub struct BatchArgs { pub struct BatchState { pub app: tauri::AppHandle, pub session_id: String, + accumulator: TranscriptAccumulator, rx_task: tokio::task::JoinHandle<()>, shutdown_tx: Option>, } impl BatchState { - fn emit_streamed_response( - &self, - response: StreamResponse, + fn emit_words( + &mut self, + response: &StreamResponse, percentage: f64, ) -> Result<(), ActorProcessingErr> { - BatchEvent::BatchResponseStreamed { + if let Some(update) = self.accumulator.process(response) { + if !update.new_final_words.is_empty() { + BatchEvent::BatchTranscriptWords { + session_id: self.session_id.clone(), + words: update.new_final_words, + percentage, + } + .emit(&self.app)?; + } + } + Ok(()) + } + + fn flush_words(&mut self, percentage: f64) -> Result<(), ActorProcessingErr> { + let update = self.accumulator.flush(); + BatchEvent::BatchTranscriptWords { session_id: self.session_id.clone(), - response, + words: update.new_final_words, percentage, } .emit(&self.app)?; @@ -142,6 +159,7 @@ impl Actor for BatchActor { let state = BatchState { app: args.app, session_id: args.session_id, + accumulator: TranscriptAccumulator::new(), rx_task, shutdown_tx: Some(shutdown_tx), }; @@ -173,15 +191,7 @@ impl Actor for BatchActor { percentage, } => { tracing::info!("batch stream response received"); - - let is_final = matches!( - response.as_ref(), - StreamResponse::TranscriptResponse { is_final, .. } if *is_final - ); - - if is_final { - state.emit_streamed_response(*response, percentage)?; - } + state.emit_words(&response, percentage)?; } BatchMsg::StreamStartFailed(error) => { @@ -198,6 +208,7 @@ impl Actor for BatchActor { BatchMsg::StreamEnded => { tracing::info!("batch_stream_ended"); + state.flush_words(1.0)?; myself.stop(None); } } diff --git a/plugins/listener2/src/events.rs b/plugins/listener2/src/events.rs index cee053c5f6..a14ef6c1f5 100644 --- a/plugins/listener2/src/events.rs +++ b/plugins/listener2/src/events.rs @@ -1,5 +1,5 @@ +use hypr_transcript::accumulator::TranscriptWord; use owhisper_interface::batch::Response as BatchResponse; -use owhisper_interface::stream::StreamResponse; #[macro_export] macro_rules! common_event_derives { @@ -20,9 +20,9 @@ common_event_derives! { response: BatchResponse, }, #[serde(rename = "batchProgress")] - BatchResponseStreamed { + BatchTranscriptWords { session_id: String, - response: StreamResponse, + words: Vec, percentage: f64, }, #[serde(rename = "batchFailed")] From 68273da4cd776a91946e8a62c972df1684dbba49 Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Thu, 19 Feb 2026 15:53:22 +0900 Subject: [PATCH 3/6] new data --- crates/transcribe-proxy/tests/common/mod.rs | 20 +- .../transcribe-proxy/tests/record_fixtures.rs | 61 +- .../src/accumulator/fixtures/soniox_2.json | 99368 ++++++++++++++++ crates/transcript/src/accumulator/mod.rs | 29 +- 4 files changed, 99450 insertions(+), 28 deletions(-) create mode 100644 crates/transcript/src/accumulator/fixtures/soniox_2.json diff --git a/crates/transcribe-proxy/tests/common/mod.rs b/crates/transcribe-proxy/tests/common/mod.rs index ca3bad2b6c..984f51d099 100644 --- a/crates/transcribe-proxy/tests/common/mod.rs +++ b/crates/transcribe-proxy/tests/common/mod.rs @@ -105,17 +105,25 @@ pub fn test_audio_stream_with_rate( Item = owhisper_interface::MixedMessage, > + Send + Unpin ++ 'static { + test_audio_stream_from_path(hypr_data::english_1::AUDIO_PATH, sample_rate) +} + +pub fn test_audio_stream_from_path( + path: &str, + sample_rate: u32, +) -> impl futures_util::Stream< + Item = owhisper_interface::MixedMessage, +> + Send ++ Unpin + 'static { use hypr_audio_utils::AudioFormatExt; - // chunk_samples should be proportional to sample_rate to maintain 100ms chunks let chunk_samples = (sample_rate / 10) as usize; - let audio = rodio::Decoder::new(std::io::BufReader::new( - std::fs::File::open(hypr_data::english_1::AUDIO_PATH).unwrap(), - )) - .unwrap() - .to_i16_le_chunks(sample_rate, chunk_samples); + let audio = rodio::Decoder::new(std::io::BufReader::new(std::fs::File::open(path).unwrap())) + .unwrap() + .to_i16_le_chunks(sample_rate, chunk_samples); Box::pin(tokio_stream::StreamExt::throttle( audio.map(owhisper_interface::MixedMessage::Audio), diff --git a/crates/transcribe-proxy/tests/record_fixtures.rs b/crates/transcribe-proxy/tests/record_fixtures.rs index 48a2da42b3..0e7435a484 100644 --- a/crates/transcribe-proxy/tests/record_fixtures.rs +++ b/crates/transcribe-proxy/tests/record_fixtures.rs @@ -4,6 +4,7 @@ use common::recording::{RecordingOptions, RecordingSession}; use common::*; use futures_util::StreamExt; +use std::path::Path; use std::time::Duration; use owhisper_client::Provider; @@ -12,11 +13,14 @@ use owhisper_interface::stream::StreamResponse; async fn record_live_fixture( provider: Provider, + audio_path: &str, + languages: Vec, recording_opts: RecordingOptions, - sample_rate: u32, + json_array_output: Option<&Path>, ) { let _ = tracing_subscriber::fmt::try_init(); + let sample_rate = provider.default_live_sample_rate(); let api_key = std::env::var(provider.env_key_name()) .unwrap_or_else(|_| panic!("{} must be set", provider.env_key_name())); let addr = start_server_with_provider(provider, api_key).await; @@ -32,7 +36,7 @@ async fn record_live_fixture( .api_base(format!("http://{}", addr)) .params(owhisper_interface::ListenParams { model: Some(provider.default_live_model().to_string()), - languages: vec![hypr_language::ISO639::En.into()], + languages, sample_rate, ..Default::default() }) @@ -40,12 +44,13 @@ async fn record_live_fixture( .await; let provider_name = format!("record:{}", provider); - let input = test_audio_stream_with_rate(sample_rate); + let input = test_audio_stream_from_path(audio_path, sample_rate); let (stream, handle) = client.from_realtime_audio(input).await.unwrap(); futures_util::pin_mut!(stream); + let mut responses: Vec = Vec::new(); let mut saw_transcript = false; - let timeout = Duration::from_secs(30); + let timeout = Duration::from_secs(120); let test_future = async { while let Some(result) = stream.next().await { @@ -68,6 +73,8 @@ async fn record_live_fixture( } } } + + responses.push(response); } Err(e) => { panic!("[{}] error: {:?}", provider_name, e); @@ -89,6 +96,15 @@ async fn record_live_fixture( } } + if let Some(output_path) = json_array_output { + if let Some(parent) = output_path.parent() { + std::fs::create_dir_all(parent).expect("failed to create output directory"); + } + let json = serde_json::to_string_pretty(&responses).expect("failed to serialize responses"); + std::fs::write(output_path, json).expect("failed to write fixture"); + println!("[{}] Fixture saved to {:?}", provider_name, output_path); + } + assert!( saw_transcript, "[{}] expected at least one non-empty transcript", @@ -98,14 +114,38 @@ async fn record_live_fixture( macro_rules! record_fixture_test { ($name:ident, $adapter:ty, $provider:expr) => { + record_fixture_test!( + $name, $adapter, $provider, + hypr_data::english_1::AUDIO_PATH, + vec![hypr_language::ISO639::En.into()], + @no_output + ); + }; + ($name:ident, $adapter:ty, $provider:expr, $audio:expr, $langs:expr, $output:literal) => { + #[ignore] + #[tokio::test] + async fn $name() { + let output_path = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")).join($output); + record_live_fixture::<$adapter>( + $provider, + $audio, + $langs, + RecordingOptions::from_env("normal"), + Some(&output_path), + ) + .await; + } + }; + ($name:ident, $adapter:ty, $provider:expr, $audio:expr, $langs:expr, @no_output) => { #[ignore] #[tokio::test] async fn $name() { - let sample_rate = $provider.default_live_sample_rate(); record_live_fixture::<$adapter>( $provider, + $audio, + $langs, RecordingOptions::from_env("normal"), - sample_rate, + None, ) .await; } @@ -138,4 +178,13 @@ mod record { owhisper_client::ElevenLabsAdapter, Provider::ElevenLabs ); + + record_fixture_test!( + soniox_korean, + owhisper_client::SonioxAdapter, + Provider::Soniox, + hypr_data::korean_1::AUDIO_PATH, + vec![hypr_language::ISO639::Ko.into()], + "../../crates/transcript/src/accumulator/fixtures/soniox_2.json" + ); } diff --git a/crates/transcript/src/accumulator/fixtures/soniox_2.json b/crates/transcript/src/accumulator/fixtures/soniox_2.json new file mode 100644 index 0000000000..20c594547b --- /dev/null +++ b/crates/transcript/src/accumulator/fixtures/soniox_2.json @@ -0,0 +1,99368 @@ +[ + { + "type": "Results", + "start": 0.36, + "duration": 0.06, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "502138e8-211d-4265-af2c-d20f87e5f51f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "270d8d10-01b3-42c1-b241-9e354344540d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 0.24, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "838b41e9-38ff-46f5-9a71-9ce518e63356", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4b2b35b7-6113-4d47-92f3-0e150ed0a57c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 0.48, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b1c9a009-449b-48b4-8402-acc8b984b049", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8d5f391d-0563-4cf0-88ef-82a86fe5e899", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 0.6, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "12b84daa-efa1-4b71-a424-8f032f4fee61", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "44e841ba-2a8b-4f4c-8fbd-1881ac1d563e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 0.7799999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 익", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": "익", + "start": 1.08, + "end": 1.14, + "confidence": 0.87, + "speaker": 1, + "punctuated_word": "익", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "71ca6f3c-1053-49d3-9dc9-f938c501f71b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e6d733f1-65d5-4e24-9d52-a1b0ce8873c6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 0.9, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "26f96b16-adea-415e-8b1b-b9de0ff90f5b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "833be2c5-c453-40ed-8b30-d2eb7535acd3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 1.02, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3dcb4341-3382-4edf-b841-0dac02b74711", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e0680ce3-13ce-4cf4-b5b0-3ac1d7d58056", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 1.2600000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2a21dc77-030f-4e25-9f40-e6da5801ccfb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cf41f8a5-8b27-436a-9f17-552b73f8ffd7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 1.38, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "aa97b774-3837-44bc-b6eb-257bece355cd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "57572605-a6c8-44e6-992e-c080225337eb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 1.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5acd36c8-99bd-47cd-9a01-3b3de6ae88c1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "62b164a1-c020-4ada-b9af-c5d53f075c67", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 1.6800000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d9228114-108d-400b-bd26-fe3881c91a11", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ba3085b7-46d1-4fdf-8cd9-3df56afe1086", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 1.7400000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3597f7ff-6c0d-4b8a-83a8-32e1c0dee6f9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c241ec35-f350-4fff-988b-dec26d498eba", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 1.8600000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다.", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ce9d4eb8-b8bb-4854-8d36-3555ecc0b592", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ea1ad192-d4fb-4679-ace4-803282b0dd42", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.1, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6ee54ac2-4728-4502-b2f8-b524ab4e24c5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bde45adc-774d-467b-b152-97d403930f42", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.22, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "995774a1-0bc8-4e53-9c1b-27d69e785121", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4c038a79-39a6-468d-b89e-f404f3c00264", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.3400000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7f85b7e6-d6bc-4e7c-a977-3aa095a40318", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "423670b5-8f6f-4cfc-95a9-e9e559809010", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.52, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 2.82, + "end": 2.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c7204355-992a-42c1-86b6-9d60c7740410", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "adc1fe84-a33e-4d3c-b418-6ba83cfc3cb7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.64, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 2.82, + "end": 2.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 2.94, + "end": 3.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1b520ea6-91e7-446f-8f57-2f2ac29f8019", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "13238940-d8ba-4e88-ad6a-8f0cfe2658b1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.7600000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 2.82, + "end": 2.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 2.94, + "end": 3.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 3.06, + "end": 3.12, + "confidence": 0.996, + "speaker": 1, + "punctuated_word": "드", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "37e76e44-aeb5-49c2-a485-286fb3afe9a3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5fb52efa-8362-4545-a1fb-ba6a42c31271", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.8800000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 2.82, + "end": 2.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 2.94, + "end": 3.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 3.06, + "end": 3.12, + "confidence": 0.996, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "릴", + "start": 3.18, + "end": 3.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "릴", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8fefdb0c-06d9-4030-8640-f6398608a6ef", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b7db3333-de1e-4355-9109-9a155df37511", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 2.94, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴까", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 2.82, + "end": 2.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 2.94, + "end": 3.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 3.06, + "end": 3.12, + "confidence": 0.996, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "릴", + "start": 3.18, + "end": 3.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "릴", + "language": null + }, + { + "word": "까", + "start": 3.24, + "end": 3.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "까", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bcfea41c-72a4-4fc7-9291-ffd78c26f93b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a8b32278-a670-43cc-9192-a9b81d489c0b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 3.06, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴까요", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 2.82, + "end": 2.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 2.94, + "end": 3.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 3.06, + "end": 3.12, + "confidence": 0.996, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "릴", + "start": 3.18, + "end": 3.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "릴", + "language": null + }, + { + "word": "까", + "start": 3.24, + "end": 3.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 3.36, + "end": 3.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "50e707c8-486d-454e-a76f-a47e81727234", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c4ba88da-cde1-475a-9abe-ec826c3c9cac", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 0.36, + "duration": 3.18, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴까요?", + "words": [ + { + "word": "기", + "start": 0.36, + "end": 0.42, + "confidence": 0.856, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "간", + "start": 0.54, + "end": 0.6, + "confidence": 0.448, + "speaker": 1, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 0.66, + "end": 0.72, + "confidence": 0.891, + "speaker": 1, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 0.78, + "end": 0.84, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 0.9, + "end": 0.96, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "디", + "language": null + }, + { + "word": " 이", + "start": 1.08, + "end": 1.14, + "confidence": 0.346, + "speaker": 1, + "punctuated_word": " 이", + "language": null + }, + { + "word": "민", + "start": 1.2, + "end": 1.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": "민", + "language": null + }, + { + "word": "형", + "start": 1.32, + "end": 1.38, + "confidence": 0.645, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": " 상", + "start": 1.56, + "end": 1.62, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 1.68, + "end": 1.74, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "담", + "language": null + }, + { + "word": "원", + "start": 1.8, + "end": 1.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "원", + "language": null + }, + { + "word": "입", + "start": 1.98, + "end": 2.04, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "입", + "language": null + }, + { + "word": "니", + "start": 2.04, + "end": 2.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 2.16, + "end": 2.22, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 무", + "start": 2.4, + "end": 2.46, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 무", + "language": null + }, + { + "word": "엇", + "start": 2.52, + "end": 2.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "엇", + "language": null + }, + { + "word": "을", + "start": 2.64, + "end": 2.7, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 2.82, + "end": 2.88, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 2.94, + "end": 3.0, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 3.06, + "end": 3.12, + "confidence": 0.996, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "릴", + "start": 3.18, + "end": 3.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "릴", + "language": null + }, + { + "word": "까", + "start": 3.24, + "end": 3.3, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 3.36, + "end": 3.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "요", + "language": null + }, + { + "word": "?", + "start": 3.48, + "end": 3.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "?", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8d708e54-1f9b-48c4-9c0e-c8d5c069aa32", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8cadee05-b4a4-4c16-832b-0881f15d1457", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 0.05999999999999961, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "136bfc66-f528-47ee-9130-c2ac3acdbab4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "15d0c2df-64d2-4e30-97c8-4450100166dc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 0.2400000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "70723b03-5cfb-44e9-8992-8a4291495fd8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "00832a99-aca2-422b-81cd-d46e30d66c53", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 0.3600000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dfaac27c-7203-4b97-af66-0e754ddfdeb3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b0aa55b5-5309-445f-acf8-ac38b60edc4b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 0.41999999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "37e38542-de0e-41c6-a6a9-1d73dc94a7d9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9efd9581-9656-4c25-bfe2-055a42c08302", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 0.5999999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요.", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "469b748e-3f97-4dc6-ab0a-8174bd6b339d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f7b1ff0c-2bfd-499e-9580-569b05060168", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 0.7199999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5c909aec-f7fb-42dd-963e-8a2659b91cf6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "96ed5bb5-497f-4bb6-bd3c-ed585991602d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 0.8399999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "88bdf610-71d2-4de7-916b-2366097b63af", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bf6c1b91-0e33-4466-9407-aedce566261a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 1.1399999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8973d98b-50a0-43e2-a482-27e7f740b613", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "da0e5f0e-9324-4a03-bf93-286a41a819e7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 1.7999999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "66b8e881-0550-416d-b996-8a573a3731c2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f43156fe-c815-49b1-b539-de9509816c8a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 1.9799999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "59c560c5-a217-4fc4-b382-af455bbf7adc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "14342edc-bb19-4233-8308-df8a7ed80408", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 2.2199999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8507b098-aabc-4b62-9426-9ca1a8b07fdf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "54b6f3b0-a8e5-477b-95d4-4b6987b28483", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 2.4000000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "94da324a-7ed4-4c30-9598-34344154b296", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "80b742b0-af8d-472f-bb09-8614cfa40d2b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 2.58, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6d2ab1ea-e800-40d8-a74c-a767ac90d86f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2a2c7f2f-8542-4a19-8dcb-a05fc7541b03", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 2.88, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7bf20491-4250-43d0-8f31-54e307f1797b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "aeb59c3d-6f18-427c-8d09-9e8d59ab427b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 3.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d18278f6-e438-4fef-8444-ff31d576f917", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ca1f9461-5a5a-4ac4-af0a-02e3395f6d05", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 3.1799999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d6ac08c2-269a-4cfa-adea-a52c4de103de", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b815009f-48ef-4f73-943d-4608a1b93cfe", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 3.3, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9468883d-de3d-4a3b-ab53-81f5b834bea5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f7ba7108-c260-41a9-a29c-74477cb219f8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 3.42, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4726cf39-3b85-4ca3-aad6-addf391ae017", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "740d6ecb-f38f-4ce8-b12b-13340bd65a6a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 3.5999999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f9fb7567-d890-44ad-b0ee-141be175efde", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b0d0e3b1-76f5-4bdb-86a3-68b732ae87ec", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 3.7800000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ae82f546-191d-456f-becc-6134dc7529a3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b4c9a68c-3bcc-4376-8b80-3aac0a477702", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 4.08, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3f6490c5-cc36-464c-aaf9-a46a460f33e5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d7dab08b-4755-4cbc-8d40-727a543f9f3b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데,", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5c158e7a-d9ea-4dcf-8d37-d9ed8dc53303", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "395fa083-b934-434f-936a-e7f6c74a5184", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 5.039999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데, 학", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e6c1d1ef-c537-49de-bca3-e382f576323e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d3abad6a-65d7-4e43-8c67-c8481144dab5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 5.220000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데, 학습", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2d5879e8-a85e-4839-900a-68f781ef0966", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "849996ed-a64c-4e6b-bdae-5d227a1460cf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 5.52, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데, 학습과", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cd9577cf-3ccf-487e-80c6-3a926a285cb3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9dfc3af2-ba3a-4fe4-86ef-ae9f250c040c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 4.08, + "duration": 1.1399999999999997, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 안녕하세요. 제가 현재", + "words": [ + { + "word": " 안", + "start": 4.08, + "end": 4.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 안", + "language": null + }, + { + "word": "녕", + "start": 4.2, + "end": 4.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "녕", + "language": null + }, + { + "word": "하", + "start": 4.26, + "end": 4.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "세", + "start": 4.38, + "end": 4.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "세", + "language": null + }, + { + "word": "요", + "start": 4.44, + "end": 4.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 4.62, + "end": 4.68, + "confidence": 0.835, + "speaker": 2, + "punctuated_word": ".", + "language": null + }, + { + "word": " 제", + "start": 4.74, + "end": 4.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 4.86, + "end": 4.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 현재", + "start": 5.16, + "end": 5.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "643760e3-f15f-45ec-92df-00fb1650a58f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9e2522e9-7cbd-4a27-afa4-dfe99f098b03", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 3.7799999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e920c064-16db-45c8-a4ad-022fdf3a246c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "009f1e54-6055-4a25-a74a-0d7246de975d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "feee3963-4497-423f-aa3b-685bc63fbfad", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8250518b-e52c-43db-bc5f-f4ac984f1664", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 4.26, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "775df182-b2a5-46dc-a35c-a55a86f926bf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cbed5f0e-e703-4197-85f8-8b1da5d93216", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 4.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4dc7f6b3-6110-435e-881e-abb90e117481", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c1111048-ebea-4944-aafd-68a9df6ba652", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 4.68, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b93e7418-4f72-402c-bb52-b0740dd007f3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "71436f9b-77d5-42ea-9fce-4cf8e8d9f74e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 4.92, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3a9ff660-6f30-40a9-9c64-055f9fbbcd64", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "252e3f68-69b9-4e1d-ab0d-ba03105fcc63", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 5.16, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6db73304-fd9c-4502-98f4-6daa3581bccf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "18d8bf39-b776-48cb-9834-fd81c84da1c2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 5.279999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "21cf365b-f506-4b42-9e50-979140c84cc1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b5032c5a-c7c2-4848-9c55-5d3165591985", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 5.459999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서 ", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5775b418-616a-40d0-917c-e0ec1270c4c7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "19e4c248-566b-4bf0-a081-35d2d054eb29", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 5.52, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서 질", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dd034b23-f891-4df1-b83a-0dc0d02104f9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e15ad7f6-0b29-4683-b295-bc639e43fbde", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 5.699999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서 질문", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "29a78d8e-493f-4e1b-adfd-9a938c3f1b99", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b5d70da6-d562-4401-9d7e-d2b790bab508", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 5.82, + "duration": 1.8599999999999994, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 영어 인터넷 수강 학습을 하고", + "words": [ + { + "word": " 영", + "start": 5.82, + "end": 5.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "어", + "start": 6.0, + "end": 6.06, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": " 인", + "start": 6.24, + "end": 6.3, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 인", + "language": null + }, + { + "word": "터", + "start": 6.42, + "end": 6.48, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "넷", + "start": 6.6, + "end": 6.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "넷", + "language": null + }, + { + "word": " 수", + "start": 6.9, + "end": 6.96, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "강", + "start": 7.02, + "end": 7.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "강", + "language": null + }, + { + "word": " 학", + "start": 7.2, + "end": 7.26, + "confidence": 0.872, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 7.32, + "end": 7.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "을", + "start": 7.44, + "end": 7.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 하", + "start": 7.56, + "end": 7.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하", + "language": null + }, + { + "word": "고", + "start": 7.62, + "end": 7.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "고", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cceba15a-e4d4-4e2f-a6f2-36dfd70f5bf6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "acf17e4c-e6bf-4993-aa59-496e575c1fdb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 3.7199999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b6a581cd-a654-445d-8aa6-c737c61e02b2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6d7e54ff-4394-478c-b348-5f3bc459071d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 4.0200000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "269f800b-6a76-4da2-ad91-3441d7e3ed84", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "66b09b5b-2b80-46a6-a4b1-94284e96442c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 4.14, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7c1ea5ef-09d8-461c-a81d-a39dcae8cc6e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6554ffcd-e226-4660-ad08-3f7865cd5e81", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 4.319999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a71783df-0d4b-480c-954f-915034227dc8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "80d1cd86-5778-4fef-aa78-5700af3ba8bb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 4.44, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다.", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e552500c-1091-4316-8adc-297ca246db84", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "42cd9de6-d9ab-4609-93b5-5f8d2df756ae", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 5.04, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5b48f6b2-f268-41ce-b5fa-1091c61a32b6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d7673f93-1455-4081-ab8d-e313e41769bf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 5.1000000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4da5ac02-98d3-4cce-95da-e2c46dc764c5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "74cfe41f-89bd-4b11-9d0a-83e854d2e2c0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 5.28, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 상", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 상", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "956fe16c-24be-4ee9-9803-56057bf041ac", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3b7ffbac-3566-4b1d-84b3-e6e8d25d1ba0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 5.3999999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상담", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 상", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 13.14, + "end": 13.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "48cde5e8-2d9c-4c9d-b3a1-0f5a171736fa", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fc7e5f84-8d3b-46ef-86d8-8bb4a14e10a1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 5.64, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 상", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 13.14, + "end": 13.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 가능", + "start": 13.38, + "end": 13.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 가능", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a8b8818f-5ef7-4430-b237-2f0abc84688e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0b6fe112-1dd9-4356-9186-c576204f5505", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 5.88, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 상", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 13.14, + "end": 13.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 가능", + "start": 13.38, + "end": 13.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 가능", + "language": null + }, + { + "word": "할", + "start": 13.62, + "end": 13.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "357da9f9-0f16-4d4c-902c-73d249a0bd8b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9d9746fe-e935-4659-92b4-68bd487c0e17", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 7.8, + "duration": 1.7999999999999998, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 있는데, 학습과", + "words": [ + { + "word": " 있는", + "start": 7.8, + "end": 7.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": "데", + "start": 8.1, + "end": 8.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": ",", + "start": 8.34, + "end": 8.4, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 학", + "start": 9.06, + "end": 9.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 9.24, + "end": 9.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "과", + "start": 9.54, + "end": 9.6, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "86f2269b-b5fb-4a51-a8f4-9b516d21d677", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "671c08b2-e960-4ce3-81c8-eff227d3ebf5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 9.9, + "duration": 3.9000000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할까", + "words": [ + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 상", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 13.14, + "end": 13.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 가능", + "start": 13.38, + "end": 13.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 가능", + "language": null + }, + { + "word": "할", + "start": 13.62, + "end": 13.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": "까", + "start": 13.74, + "end": 13.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7f7b4b40-80a4-4ca1-bbf0-973e9ba04f72", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0e4c89ef-78e7-47ab-b431-ca1458b4782b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 9.9, + "duration": 4.02, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할까요", + "words": [ + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 상", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 13.14, + "end": 13.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 가능", + "start": 13.38, + "end": 13.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 가능", + "language": null + }, + { + "word": "할", + "start": 13.62, + "end": 13.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": "까", + "start": 13.74, + "end": 13.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 13.86, + "end": 13.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "97e22ce5-657d-473c-8c5f-e2ec7e19293d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2be5de05-4be1-4f9b-bb30-d16ea2f301ee", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 9.9, + "duration": 4.139999999999999, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할까요?", + "words": [ + { + "word": " 교", + "start": 9.9, + "end": 9.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 10.02, + "end": 10.08, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": " 구", + "start": 10.26, + "end": 10.32, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "매", + "start": 10.44, + "end": 10.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "매", + "language": null + }, + { + "word": " 관련", + "start": 10.68, + "end": 10.74, + "confidence": 0.969, + "speaker": 2, + "punctuated_word": " 관련", + "language": null + }, + { + "word": "해", + "start": 10.92, + "end": 10.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 11.04, + "end": 11.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": "질", + "start": 11.28, + "end": 11.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "질", + "language": null + }, + { + "word": "문", + "start": 11.46, + "end": 11.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "이", + "start": 11.76, + "end": 11.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 11.88, + "end": 11.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "습", + "start": 12.0, + "end": 12.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 12.06, + "end": 12.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 12.18, + "end": 12.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 지", + "start": 12.78, + "end": 12.84, + "confidence": 0.804, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 12.84, + "end": 12.9, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 상", + "start": 13.02, + "end": 13.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 상", + "language": null + }, + { + "word": "담", + "start": 13.14, + "end": 13.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 가능", + "start": 13.38, + "end": 13.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 가능", + "language": null + }, + { + "word": "할", + "start": 13.62, + "end": 13.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": "까", + "start": 13.74, + "end": 13.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 13.86, + "end": 13.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": "?", + "start": 13.98, + "end": 14.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "?", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "95bc9f07-5922-4efa-b158-413fad86a028", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c62a21ac-0d41-4599-8bf6-3bb78acccc4a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 0.0600000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3ebbaa90-27df-4a62-b7b1-0686cd38ab43", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5a1e3bfb-b822-46bd-b988-fb617fca704d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 0.17999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b9af1e08-1a9f-40b9-b38c-b493d1b626e8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2f63383d-2c2e-40a4-9407-f339d9db9cad", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 0.41999999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fc6bb781-5cb3-4d0e-b51b-ea43276fe1a3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2334c2f9-ee0d-41d0-b12b-60ad47411402", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 0.7799999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a570cbcb-8591-4e31-a2e9-f68a49107ed4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "432aea97-4f05-4d4f-b59a-5aafe090b686", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 0.9599999999999991, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "edc4f6e0-df6c-4b0c-9a41-59c65756914f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "afb3776c-65ea-4cce-a5a4-4bef3797b76e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 1.1400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "97c71f82-9093-4e72-a908-91a011888744", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "700223cc-bced-42af-afc8-9516b5bb3230", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 1.2599999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ce3b7656-a6f1-443f-84ac-baf1ec2dd6e4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "493dc78b-513d-416c-9138-db9060a06926", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 1.4399999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ef94e41d-966a-492c-82c3-3016f661f5ce", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "83955dc1-1380-4b3f-84ef-cd867ec94bf0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 1.92, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f2dedc7a-411c-43be-8709-d7ee816e1a58", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6848873e-f7d9-4ee7-ab2a-b5dc73abb80b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 2.0999999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f4aad0e3-c811-4a5a-8669-38e776934792", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "53cc391f-28d1-4f39-919d-6dc0a870bc12", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 2.459999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "570588a5-f7fe-487e-b48e-dec6938a793c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b909034c-ffd7-4cf3-b1dc-425165592ce4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 2.58, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5e31961f-bb15-4581-b255-a36f6ca3b089", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "07aee54b-1b8b-4ac3-aee9-ae49508fe6a1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 2.9399999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9a45a715-cd7f-4366-90d5-c4b74f7be93a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "65b7984e-7f1e-4267-b771-b68284b3a4dd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 3.24, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c45ee579-612e-453d-adca-d10971ed471b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "425bcbc3-7e04-4794-8edd-c2799bfc5645", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 3.360000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c8c1a40d-7ca4-44ab-98a0-463cfd95c501", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "20f9bd22-181d-46bb-ac7b-29203bb8e3ee", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 3.4799999999999986, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a86da91b-565c-4c34-8899-455b079f795b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ada1bdc5-f79c-4218-bde0-00c61c8fc0dd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 3.6599999999999984, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6a09e37a-eee9-4e2f-8eac-ff97c9c46d30", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eee1c21d-2f8d-496d-a3a3-794229d82112", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 3.8400000000000016, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "54d27720-1a9e-40e7-967b-de77ee63043c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9778d674-e52c-4905-9464-d902d0f9cd87", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 4.020000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "16fabf5b-a080-4e3d-bb49-d0f0cc52e352", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "938aeb09-9c4a-4d0c-925b-585782f0274e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 4.139999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a1301817-46a1-43f9-9e5c-e01962ab0618", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "000a48e6-f1e8-4d27-a203-4f6cfad88af9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 5.040000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서 제", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ee1911e9-7f27-4df5-91af-b1442d2d2cd9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c3700a70-c3c5-4e78-904f-5169d8fedcbc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 5.159999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서 제가", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ecca469d-15dd-43e2-8c5b-325372ce0bf7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6a1e76a6-edb7-4dc7-aed3-8314f5f572ce", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 5.459999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서 제가 10", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + }, + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e3ee970d-dca1-4e59-934f-937f4830f45d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e20c1ec3-eae4-4ecf-9cb5-d76e2c4f6bf2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 14.58, + "duration": 1.4399999999999995, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이번에 기간 스터디", + "words": [ + { + "word": " 이", + "start": 14.58, + "end": 14.64, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 14.7, + "end": 14.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 14.94, + "end": 15.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 기", + "start": 15.3, + "end": 15.36, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "간", + "start": 15.48, + "end": 15.54, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "간", + "language": null + }, + { + "word": " 스", + "start": 15.66, + "end": 15.72, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 스", + "language": null + }, + { + "word": "터", + "start": 15.78, + "end": 15.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "터", + "language": null + }, + { + "word": "디", + "start": 15.96, + "end": 16.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "디", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fcd6610c-427b-4cdd-8756-d2ee38e12801", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "48e065bb-324f-46d7-8d46-545a31a08dc7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "42d46eba-81d1-49e2-987a-e6ea8e70d0e5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "904aa066-b6ec-4b12-8302-8ebe211e5e2e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 3.84, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4f25a778-8835-4b20-98fe-b9d67b124f61", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f8f96c98-4629-46f5-b53d-84da6deced9f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "46e47132-00b6-47ca-beec-4be069edfb49", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2adb861f-069f-49ea-8d6c-1749203c3e75", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "47482e22-e5d3-465f-a2d8-566b744d5f31", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e7854899-dc75-4480-8ac8-28f690c090c2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6ceb87b7-f7a4-4f3f-8ec7-685b9daceb4a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "31bd4f23-8582-47dc-9dec-bc518487e864", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "eaaf0827-02f5-4d89-b8eb-74a7fd66c098", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e47eba7d-2757-4acc-bf8e-a89b487c66b9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 5.039999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점 중", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "596f11f4-cbe6-431c-8327-9ae24a6e48f0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7e03f92c-257c-4725-bcef-066979aed945", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점 중에", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7ecd209b-38a7-4b3c-99c4-dfa09d684b29", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "436cba36-f074-4e80-a946-73199a77df08", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 5.52, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점 중에 7", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + }, + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4eefdfc1-7290-4bb8-b5b9-a31ec59b7586", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "61461662-ed4e-4b3f-b155-2963795ce2cc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 16.44, + "duration": 1.6199999999999974, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 간편 진단 학습 시스템", + "words": [ + { + "word": " 간", + "start": 16.44, + "end": 16.5, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 간", + "language": null + }, + { + "word": "편", + "start": 16.62, + "end": 16.68, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "편", + "language": null + }, + { + "word": " 진", + "start": 16.98, + "end": 17.04, + "confidence": 0.99, + "speaker": 2, + "punctuated_word": " 진", + "language": null + }, + { + "word": "단", + "start": 17.1, + "end": 17.16, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 학", + "start": 17.4, + "end": 17.46, + "confidence": 0.973, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 17.46, + "end": 17.52, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 시", + "start": 17.76, + "end": 17.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 시", + "language": null + }, + { + "word": "스", + "start": 17.88, + "end": 17.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스", + "language": null + }, + { + "word": "템", + "start": 18.0, + "end": 18.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "템", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "12b66e04-5cf3-481d-be0c-93cd2ad02316", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bcd5db64-17e8-41f3-af98-3e77b9d4af8b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 3.960000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100점 만점 중에 70", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7f7e353b-e489-43f2-afc6-4edb60294fe9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fa95d582-3046-4e91-beb0-95befe917b59", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100점 만점 중에 70점", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e775e57d-8037-4f78-be9a-05bf76100a97", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "741612df-94d4-48cc-ba34-9f28aae03464", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100점 만점 중에 70점을", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a36fbb91-6223-4cb6-9bcb-eb95ee8f38ce", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bd7f503c-bcd3-4f16-ac0b-e8dbefaef2a4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 4.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e086a6fe-aacd-4880-9fca-48fae69b9099", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8861a92f-34bf-4e00-8c55-1322ca09189e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 4.620000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받았", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b66abb31-3c51-4d39-bb7f-e2560f5f9432", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f91e2236-b2b3-4a86-9bca-92cd7b45ca11", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 4.920000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받았는데,", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "04875fd9-f435-4713-9376-b95118e840dc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1fa6b9e3-c796-45e0-86b8-09cc6a57a5e9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 5.879999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받았는데, 화", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "194b5193-ddc8-4c80-8e82-16a84758e398", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c06aaccc-a0ad-4354-8d6d-73faec71a1a1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 18.18, + "duration": 1.9800000000000004, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "을 이용해서 제가 100", + "words": [ + { + "word": "을", + "start": 18.18, + "end": 18.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 이용", + "start": 18.36, + "end": 18.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이용", + "language": null + }, + { + "word": "해", + "start": 18.54, + "end": 18.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "서", + "start": 18.66, + "end": 18.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 제", + "start": 19.56, + "end": 19.62, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 19.68, + "end": 19.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 1", + "start": 19.92, + "end": 19.98, + "confidence": 0.4, + "speaker": 2, + "punctuated_word": " 1", + "language": null + }, + { + "word": "0", + "start": 19.98, + "end": 20.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "0", + "start": 20.1, + "end": 20.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fa750b23-675c-4f2c-82fc-dfa2c940c19a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "087f8b9f-ea18-48f8-8156-9c6c754a771c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 3.960000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70점을 받았는데, 화면", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8277205f-8868-4171-92b6-1de286fc053c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fabe5938-1ca5-48ed-8222-ec1a5bd21b73", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70점을 받았는데, 화면으로", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "095ba1f9-d8c0-4aae-9a96-6f0fe91a79df", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "556648ef-876e-4bda-b7f8-7d6f1c24d2fc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 4.560000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70점을 받았는데, 화면으로는", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cddefd5e-f644-4399-a58d-e30de1e27d7d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "885581fd-a4f6-490d-987d-5a847040a15c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 4.920000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4983114a-1bf4-46c9-b6b9-16c4eea286bf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "88b0d6e0-cd79-4418-935c-3831bfecc3bf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 5.400000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재 당", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9a5ab06d-a258-4257-8799-d551dc6e2321", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8c58f2ea-c4b2-46e0-8818-1a9488057f2c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 5.640000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재 당신", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "da8d6532-8643-4c6f-ab02-12d6aebe9012", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "05b80df9-4227-473e-b22b-3faccb2b2eac", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 5.880000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재 당신의", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "785e3991-a7a0-401c-bdd2-5d74c4eae591", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4b641ae9-b24b-4b75-a231-d0427b6c0dd2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 20.22, + "duration": 1.9200000000000017, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점 만점 중에 70", + "words": [ + { + "word": "점", + "start": 20.22, + "end": 20.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 만", + "start": 20.46, + "end": 20.52, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": " 만", + "language": null + }, + { + "word": "점", + "start": 20.7, + "end": 20.76, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 중", + "start": 21.42, + "end": 21.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 21.6, + "end": 21.66, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 7", + "start": 21.9, + "end": 21.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 22.08, + "end": 22.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9e9a0bff-a958-4cc3-ab1b-96dde55b760f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e2aa8f46-7595-4203-95b7-c4ac14a3af51", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 4.02, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "42650fcf-2847-4f99-981a-31ad62754a88", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "93e1d0a3-a047-48c1-a634-c5c1225c1575", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 4.139999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e100db85-0677-4af4-bcf5-8397b67e4fb2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0b8d6867-2fb4-44dc-92c4-80313f4d8e10", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 4.319999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "836bf77b-cec2-43d5-b5fd-fb3ec5dd7b80", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "383775aa-9852-477d-b6dd-4af289b69132", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 4.559999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b8db4bf8-ab04-4174-bba0-04dc58e1e2a2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "33f956bd-17a0-4228-ad2b-5848bc511cc9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 4.739999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c11491bb-37c0-464e-a05e-7d26275cfd8b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7918f5c9-2579-4d79-8524-19df0270f32b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 4.919999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0db200bb-13ee-4721-9dd9-b67c46b07501", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "22a4cf23-329e-4863-bb61-a99e56cd2491", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 5.039999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fb5130ba-91e2-4835-b76d-5c83566ae02a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d7f135bd-70b1-432d-b599-1827d89027e3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "443b2744-e6c2-4743-9378-e6615ad6d79b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f2277917-ceb8-4edc-ad67-765cd7c1d6ff", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 5.279999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 ", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3f6ed741-4e67-4710-8af9-27604d54b3d1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "631c9bc8-b076-4051-80b8-08911c8cba31", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 5.52, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 뜹", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0f281f2e-f54c-4521-9898-5ea25536479d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0460d95b-0601-4612-bffb-6ba21ea166a3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 5.639999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 뜹니", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "50072cbf-6075-4dba-a671-d02bc19b3fea", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eb157213-9ec8-4a3f-8c4b-650cda3f8a50", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 5.759999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 뜹니다", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다", + "start": 27.96, + "end": 28.02, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "24babb58-7f7a-4c6d-920c-02d01a9cc01e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "15b16c6e-9b72-43da-b4ee-a65fc1744c3b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 22.26, + "duration": 1.9199999999999982, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "점을 받았는데, 화면", + "words": [ + { + "word": "점", + "start": 22.26, + "end": 22.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": "을", + "start": 22.44, + "end": 22.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 받", + "start": 22.62, + "end": 22.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 받", + "language": null + }, + { + "word": "았", + "start": 22.74, + "end": 22.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "았", + "language": null + }, + { + "word": "는데,", + "start": 23.04, + "end": 23.1, + "confidence": 0.963, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 화", + "start": 24.0, + "end": 24.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 화", + "language": null + }, + { + "word": "면", + "start": 24.12, + "end": 24.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "96806fbf-59a0-4ca3-86f9-702cc0ab19b5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "af2c077a-dc1b-4b1b-afff-e0d11ccdf4b5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.36, + "duration": 3.900000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고", + "words": [ + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다", + "start": 27.96, + "end": 28.02, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라고", + "start": 28.2, + "end": 28.26, + "confidence": 0.935, + "speaker": 2, + "punctuated_word": "라고", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f1553e12-fdd8-40a3-a068-f1672bf88c3f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a887575d-70b2-4371-b198-132d22830ca3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.36, + "duration": 4.080000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 ", + "words": [ + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다", + "start": 27.96, + "end": 28.02, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라고", + "start": 28.2, + "end": 28.26, + "confidence": 0.935, + "speaker": 2, + "punctuated_word": "라고", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7fb8fea2-846b-4939-a323-a3f7fbe3d5bf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4f588cef-b7b3-47d8-b56d-f12e7e1b0f0a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.36, + "duration": 4.199999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어", + "words": [ + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다", + "start": 27.96, + "end": 28.02, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라고", + "start": 28.2, + "end": 28.26, + "confidence": 0.935, + "speaker": 2, + "punctuated_word": "라고", + "language": null + }, + { + "word": "되어", + "start": 28.5, + "end": 28.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "되어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c84b8b62-6dee-4656-b91c-a98e2fe0d54d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5875271f-e6de-4140-98e5-d44653404786", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.36, + "duration": 4.440000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어 있어", + "words": [ + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다", + "start": 27.96, + "end": 28.02, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라고", + "start": 28.2, + "end": 28.26, + "confidence": 0.935, + "speaker": 2, + "punctuated_word": "라고", + "language": null + }, + { + "word": "되어", + "start": 28.5, + "end": 28.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "되어", + "language": null + }, + { + "word": " 있어", + "start": 28.74, + "end": 28.8, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 있어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "52e8f423-a065-46ec-99cc-a173987dacfc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "33a3dfdc-7598-4b0c-8823-345ff3acfa43", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.36, + "duration": 4.620000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어 있어요", + "words": [ + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다", + "start": 27.96, + "end": 28.02, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라고", + "start": 28.2, + "end": 28.26, + "confidence": 0.935, + "speaker": 2, + "punctuated_word": "라고", + "language": null + }, + { + "word": "되어", + "start": 28.5, + "end": 28.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "되어", + "language": null + }, + { + "word": " 있어", + "start": 28.74, + "end": 28.8, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 있어", + "language": null + }, + { + "word": "요", + "start": 28.92, + "end": 28.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4a4a6449-0283-4d73-92bc-317f1ae23478", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "12cfde55-162e-4127-89bf-a874c21929cf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 24.36, + "duration": 4.740000000000002, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어 있어요.", + "words": [ + { + "word": "으로", + "start": 24.36, + "end": 24.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "으로", + "language": null + }, + { + "word": "는", + "start": 24.72, + "end": 24.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 현재", + "start": 25.08, + "end": 25.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 당", + "start": 25.56, + "end": 25.62, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 당", + "language": null + }, + { + "word": "신", + "start": 25.8, + "end": 25.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "신", + "language": null + }, + { + "word": "의", + "start": 26.04, + "end": 26.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 레", + "start": 26.22, + "end": 26.28, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 26.34, + "end": 26.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "은", + "start": 26.52, + "end": 26.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 아", + "start": 26.76, + "end": 26.82, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 26.94, + "end": 27.0, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 27.12, + "end": 27.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 27.24, + "end": 27.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "가", + "start": 27.42, + "end": 27.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "뜹", + "start": 27.6, + "end": 27.78, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "뜹", + "language": null + }, + { + "word": "니", + "start": 27.84, + "end": 27.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "다", + "start": 27.96, + "end": 28.02, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라고", + "start": 28.2, + "end": 28.26, + "confidence": 0.935, + "speaker": 2, + "punctuated_word": "라고", + "language": null + }, + { + "word": "되어", + "start": 28.5, + "end": 28.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "되어", + "language": null + }, + { + "word": " 있어", + "start": 28.74, + "end": 28.8, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 있어", + "language": null + }, + { + "word": "요", + "start": 28.92, + "end": 28.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 29.04, + "end": 29.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "831fc7c0-9646-44c2-ad40-0c971e7abf2a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8183fb57-74a3-445d-b982-6f6d8e0c0b82", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 0.05999999999999872, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "db029ced-1e58-458e-be17-a21eca1dab38", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e2e1bc5f-dff3-4599-9f6d-1f31a17c0fb1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 0.17999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "942e8ca2-38c8-4f1e-bdd1-2436a6ea43af", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "48feef9d-f1c1-4e05-b787-eb323b26fb5b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 0.23999999999999844, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f13b377a-626e-4266-ae15-ac2131878ecd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "65568a1e-c373-4cb0-a8e0-e1240b5f09e7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 0.41999999999999815, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e6be0957-7f20-4881-8a2f-b8339416ab25", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d6012de3-b9d7-4c69-8877-7954a663be5c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 0.4800000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1dbb9659-0b86-4d64-8fd4-eebe5780fdd4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eb796588-9c9a-40c8-ac4c-aab003b000ba", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 0.7799999999999976, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3c428e28-b670-48f4-abac-4a82c47dfefd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "59700d70-3574-45cc-96da-3d40078458ec", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 1.0799999999999983, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4e9cb015-5243-460c-9b68-9bdae290e0fe", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "abf03dba-d450-4a34-bb30-b825ee8fc586", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 1.1999999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d36b0716-d5fd-402a-89ac-c6849cacef18", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7da8ac99-cd3f-4ef0-8958-0575fd1034ee", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 1.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 ", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7447c74a-e047-4db4-ad6e-3ae4d5d7f7ad", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4d1f85d9-5a92-42cc-94b2-2dba16a06879", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 1.6199999999999974, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f26f6856-f720-4982-99d7-0996ab39b06c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8664e93b-154a-4ca2-9246-8065e63d9a88", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 1.7999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9df130ad-8d4a-41e8-8248-26a389867cf6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4acdc3a5-a825-4467-99c3-6377e7b0525f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 2.099999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3fa9979b-e3af-4b63-8d06-6aede7b11b20", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0d4fc3d6-f9da-422b-bf1e-3d4ffa4bd3c7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 2.2799999999999976, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "270d1b5e-6f22-4ed0-a392-dc0a177ae75f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d3541804-b37e-420b-b4eb-59b1b9c4b2bb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 2.5199999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1b2cb5b1-7c14-44dd-9b15-5fbb40c0a040", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4f249d7a-aa6b-42f4-9ccb-09b4508bbf75", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 2.639999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6de387ec-2a6b-45ce-af70-b2575c8ea2b7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1fba9daf-48cc-4df5-b881-fce7649db6dc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 2.879999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "53f52024-c866-4295-baea-62c3352270b2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "45c92257-f283-4f6d-b467-99ebc2128a5c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 2.9999999999999964, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d89c056b-a17f-4a2b-8b6a-408238e8ee70", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "281235aa-49dd-4f0f-a0fb-2609d9829aa8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 3.179999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "353df673-0591-49de-a8fc-b7cae0fb8826", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8d497700-1fe3-4f99-a740-19e9b43a1187", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 3.3000000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "28b1e05c-d6db-4668-a313-4dc621de75ec", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4f2a9f75-3df7-4255-9344-3e84e23af95d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 3.66, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9223ac73-45f3-4083-aa1e-2dedb35765d7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e40ec1a7-d678-4a6b-923f-d354503626d4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 3.900000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "20316225-792f-4885-a3b6-5e50fb80bef7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f06618bb-ba4a-4260-a463-b20251e4ce7b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 4.02, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "32f3ccee-c69f-4466-862d-8d0d72a42185", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "72706e22-8d82-448e-be0e-da2d648aee56", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 4.199999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니까", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a2026514-a6de-40b1-8bfc-129b5c01a160", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b3aec50e-ab25-4883-87a4-461c63b00715", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 5.039999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니까 실", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "95d778fd-5953-4db1-bb81-2b538a90e589", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "dd07164a-7fbf-48ff-9a52-18ce6cb26124", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 5.219999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니까 실제", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2d0c3906-de1b-4df0-b7c5-0cdd3fe2a599", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6ebe0a83-b8a7-4cb0-8571-f05a59fa5e08", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 29.94, + "duration": 1.1999999999999993, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 그런데 제가 그 레벨", + "words": [ + { + "word": " 그", + "start": 29.94, + "end": 30.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 30.06, + "end": 30.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": "데", + "start": 30.12, + "end": 30.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "데", + "language": null + }, + { + "word": " 제", + "start": 30.3, + "end": 30.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 30.36, + "end": 30.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 그", + "start": 30.66, + "end": 30.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": " 레", + "start": 30.96, + "end": 31.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 31.08, + "end": 31.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a85a2b31-0ab1-455a-a8ae-fb03357051b5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "39664713-a360-4495-93e8-e468791a54df", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 3.960000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "780c4879-7292-4131-9a30-3ed6279e453f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8bc60048-399c-444c-a640-073e0085f1f0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c27bf071-9056-4fb3-87c4-8012471f3ab7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e6a66a1b-6e57-451f-9b33-cfaa5c6aa68e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "173a8828-7e64-42d7-9cb2-d214d252a6bb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a747b867-78b0-4b34-a995-6494fc36b5e0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 4.68, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9b3bbe3a-e6a9-45cb-a848-7b5941d881bb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7f74862e-e023-4fad-abe8-f4cbcefcc37a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 4.859999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "07bbc176-e875-4f3d-a1ed-d2fbeb2d20d1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d21cde25-730d-45d4-9dfe-be502c8743de", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 5.339999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fe7474f9-a691-4161-b465-84a376140bd6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "399761ec-6c3b-443b-b934-7d940a4604dc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 5.460000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속도", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "014f4d42-3730-4ec9-9c1e-801d0ac58080", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1559c76b-be60-4b3d-bbf3-143b70dcb265", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 5.579999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속도를", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b43ef5f2-a314-461f-91da-10b346624b8e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "49316013-004f-49c0-b0b1-1a219f636937", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 5.759999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속도를 따라", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "599bb462-b5ee-4692-b0ca-40a805ef62e4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "87faad3d-b7fc-4083-a249-9f1fad30884c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 31.32, + "duration": 1.9200000000000017, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 맞는 강의 목록이 있길래", + "words": [ + { + "word": "에", + "start": 31.32, + "end": 31.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": "맞", + "start": 31.5, + "end": 31.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "는", + "start": 31.68, + "end": 31.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 강", + "start": 31.98, + "end": 32.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 32.16, + "end": 32.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 목", + "start": 32.4, + "end": 32.46, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 목", + "language": null + }, + { + "word": "록", + "start": 32.52, + "end": 32.58, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "록", + "language": null + }, + { + "word": "이", + "start": 32.76, + "end": 32.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 있", + "start": 32.88, + "end": 32.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "길", + "start": 33.06, + "end": 33.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "길", + "language": null + }, + { + "word": "래", + "start": 33.18, + "end": 33.24, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "래", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "15c0893c-e8e7-43ac-8f1e-a67608d96580", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ba0493e9-2c5b-41a9-b8bd-3663e75a9a70", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 3.539999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ea68679e-f387-4394-b6fc-46ad846ca3ae", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d49c8a29-ed1b-4b72-b135-f17120de7639", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 3.8400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4e6afb1c-3ec2-4644-a97c-00c7ac0d752e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5db0da88-e1bc-40e6-8a8c-01f3e6d5d2c1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.020000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d382cdd2-26b4-4154-93a8-d71b46508bdc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "08bc4670-5f60-4e6e-bc44-fc7c6d49cb6e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 ", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "52a5a545-e539-4bc1-8146-96b56d67a877", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7d4d2009-f2b3-4ab0-8a66-9f5233b98111", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.259999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0cf5da26-19a9-4b85-a284-fba435c9d27a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "03ad95ea-728b-41a2-881f-8bb1210b1059", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 ", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "47ff0a81-0dd1-420f-ba57-9df684f5f13b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8be88faf-ac7c-47a1-a207-2b47445249fd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.439999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": "힘", + "start": 37.92, + "end": 37.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "힘", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7b356670-0714-43e0-ad9b-267658bdd433", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c183d21f-6752-41ee-8e6d-b4d5f2c62f57", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.560000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": "힘", + "start": 37.92, + "end": 37.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "힘", + "language": null + }, + { + "word": "든", + "start": 38.04, + "end": 38.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ccdcf8f0-b21a-4095-bebc-005cafd317b3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2ae4f5ad-c3dc-4d4c-965f-0ad161c936eb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.800000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": "힘", + "start": 37.92, + "end": 37.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "힘", + "language": null + }, + { + "word": "든", + "start": 38.04, + "end": 38.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": " 것", + "start": 38.28, + "end": 38.34, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 것", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3d6f8f9e-9663-4d9e-a630-d8ebec1287ab", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c2fc1a09-57ba-4db9-a0a4-d314d5948ca4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 4.920000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": "힘", + "start": 37.92, + "end": 37.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "힘", + "language": null + }, + { + "word": "든", + "start": 38.04, + "end": 38.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": " 것", + "start": 38.28, + "end": 38.34, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": " 같", + "start": 38.4, + "end": 38.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 같", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c181ab7c-697a-4eb5-b3d8-fc91efb4310c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ec10b0e6-0932-45a4-94f9-a3b92c52c6b9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 5.100000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같아", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": "힘", + "start": 37.92, + "end": 37.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "힘", + "language": null + }, + { + "word": "든", + "start": 38.04, + "end": 38.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": " 것", + "start": 38.28, + "end": 38.34, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": " 같", + "start": 38.4, + "end": 38.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 38.58, + "end": 38.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "397e02ac-45db-4e0d-816a-a2cf1975a90c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fb0238e5-ad95-48d0-b089-8d810b6885c6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같아요", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": "힘", + "start": 37.92, + "end": 37.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "힘", + "language": null + }, + { + "word": "든", + "start": 38.04, + "end": 38.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": " 것", + "start": 38.28, + "end": 38.34, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": " 같", + "start": 38.4, + "end": 38.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 38.58, + "end": 38.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "요", + "start": 38.7, + "end": 38.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ce21fb01-6a45-43be-8c93-64188d7f052d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c7018031-2aa1-4792-858f-bad1cd9b579e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 33.54, + "duration": 5.340000000000003, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같아요.", + "words": [ + { + "word": " 들어", + "start": 33.54, + "end": 33.6, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "보", + "start": 33.78, + "end": 33.84, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "니", + "start": 33.9, + "end": 33.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 34.08, + "end": 34.14, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 실", + "start": 34.92, + "end": 34.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 실", + "language": null + }, + { + "word": "제", + "start": 35.1, + "end": 35.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": " 제", + "start": 35.22, + "end": 35.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 35.34, + "end": 35.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 하는", + "start": 35.58, + "end": 35.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 하는", + "language": null + }, + { + "word": " 학", + "start": 35.94, + "end": 36.0, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 36.12, + "end": 36.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": " 속", + "start": 36.6, + "end": 36.66, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 속", + "language": null + }, + { + "word": "도", + "start": 36.72, + "end": 36.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "를", + "start": 36.84, + "end": 36.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 따라", + "start": 37.02, + "end": 37.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 37.32, + "end": 37.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 37.44, + "end": 37.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 37.5, + "end": 37.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": "너", + "start": 37.68, + "end": 37.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 37.74, + "end": 37.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": "힘", + "start": 37.92, + "end": 37.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "힘", + "language": null + }, + { + "word": "든", + "start": 38.04, + "end": 38.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": " 것", + "start": 38.28, + "end": 38.34, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": " 같", + "start": 38.4, + "end": 38.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 38.58, + "end": 38.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "요", + "start": 38.7, + "end": 38.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 38.82, + "end": 38.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "09c10289-d62b-42ac-bcc4-dc2d04f27e9b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9af30a83-0275-40a8-9d2d-3e4da6ee83c6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.48, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네", + "words": [ + { + "word": " 네", + "start": 39.48, + "end": 39.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "febb2862-9d37-48a8-b09f-ce4e0868d19d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6999914a-8bac-48f2-9221-4cf3f8afafd3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 0.29999999999999716, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e0f4e509-e749-4140-a86a-518837e831ab", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "40b07066-279b-4e51-aed7-1928dc3a9a6f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 0.4799999999999969, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "07e3741f-5fab-436d-967a-62e0f987ad62", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a460f50e-6eb9-4f40-bc52-2d3bfdde0578", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 0.7199999999999989, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e12369cf-3b41-45b8-ac87-38726b02232d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "021df2ff-d49f-4018-96db-770eef4596d7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 1.0799999999999983, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "014ffbb0-ff2c-4895-a83b-7c1dbf2d4e15", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e09d5222-722e-4ac5-b058-1925dae85851", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 1.1999999999999957, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "45b6bd62-070f-4f38-b16b-428b054d688f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "92e2e4da-a910-4a28-a0be-dd81b42cfe88", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 1.3799999999999955, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f8ccc8f1-199b-4037-98f5-f0bc6b308b20", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ccd88bdd-cdf7-4956-8ac5-c94d8d0f4fdd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 1.5599999999999952, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ef69c307-e5ec-4f98-af8a-2fc9786ee5d4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "33a093b1-4bf6-45ab-88b4-df8f906b1588", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 1.7399999999999949, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "928f9726-f126-4c57-87ff-f509aff8ccab", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7175e319-27c3-43aa-aa06-6d137425f682", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 1.7999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7e6c901a-3aa6-4896-b6d4-f99bc2a5a2e1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d3e10f1f-99bd-4c99-aab8-51e2cca3659f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 1.9799999999999969, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a8122d1f-25ad-4956-8b1c-41e97afed023", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "736ab845-d943-4dc3-a39a-e4991d4d6471", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 2.1000000000000014, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0803c916-c411-4083-bb7e-8ca63c5b3d0c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6c7ee943-9b56-40d4-82cc-eef16a0584b0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 2.460000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ab95a710-0ff9-407a-ba79-9254c69ec505", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "24e43baf-8983-4e4d-8258-c1e7fb0ebd47", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 2.6999999999999957, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8d45f41e-c93d-4ec4-9045-a487ce5befbc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eb8ba5c7-3736-4876-95d5-68dc89b0deb0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 2.9399999999999977, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "270db258-5cb0-423e-8b97-0e0a834bf9d7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "129f9352-d9f1-43ab-8ba5-6dbf7e98fe71", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 3.059999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 42.42, + "end": 42.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "기", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2ab1d243-b86d-4343-bbf5-8293a8f12639", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "eba1b329-e217-4149-ae6f-e0f576dc608f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 3.1799999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 ", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 42.42, + "end": 42.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 42.48, + "end": 42.54, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "35ae161b-be29-4832-8abe-24fdfc16704b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "761ab718-a38c-46b2-a151-eecbb9897b1e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 3.239999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 42.42, + "end": 42.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 42.48, + "end": 42.54, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "힘", + "start": 42.6, + "end": 42.66, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "힘", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7384a951-595b-4713-b795-9c7473091ea9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cfa52d33-2e60-41b8-9d3d-2cadc99bd1e8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 3.4200000000000017, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 42.42, + "end": 42.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 42.48, + "end": 42.54, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "힘", + "start": 42.6, + "end": 42.66, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "힘", + "language": null + }, + { + "word": "들", + "start": 42.78, + "end": 42.84, + "confidence": 0.542, + "speaker": 1, + "punctuated_word": "들", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d0691be2-a4b1-42ec-97cd-c932d05b1463", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c1091f3b-8e05-44fb-95f9-f0c63132dd82", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들까", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 42.42, + "end": 42.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 42.48, + "end": 42.54, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "힘", + "start": 42.6, + "end": 42.66, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "힘", + "language": null + }, + { + "word": "들", + "start": 42.78, + "end": 42.84, + "confidence": 0.542, + "speaker": 1, + "punctuated_word": "들", + "language": null + }, + { + "word": "까", + "start": 43.08, + "end": 43.14, + "confidence": 0.913, + "speaker": 1, + "punctuated_word": "까", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "82480331-694a-43bc-8c78-57959f09a071", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1368692c-ec6d-459a-a905-76b9aa9bc733", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 3.8399999999999963, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들까요", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 42.42, + "end": 42.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 42.48, + "end": 42.54, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "힘", + "start": 42.6, + "end": 42.66, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "힘", + "language": null + }, + { + "word": "들", + "start": 42.78, + "end": 42.84, + "confidence": 0.542, + "speaker": 1, + "punctuated_word": "들", + "language": null + }, + { + "word": "까", + "start": 43.08, + "end": 43.14, + "confidence": 0.913, + "speaker": 1, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 43.2, + "end": 43.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d74cc7bd-2bea-4410-b225-ccd2765f57e0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f444ea25-da97-4cee-8e7e-fc2518c873cb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 39.42, + "duration": 3.960000000000001, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들까요?", + "words": [ + { + "word": " 네", + "start": 39.42, + "end": 39.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 39.54, + "end": 39.6, + "confidence": 0.994, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 그", + "start": 39.66, + "end": 39.72, + "confidence": 0.858, + "speaker": 1, + "punctuated_word": " 그", + "language": null + }, + { + "word": "럼", + "start": 39.84, + "end": 39.9, + "confidence": 0.965, + "speaker": 1, + "punctuated_word": "럼", + "language": null + }, + { + "word": " 현재", + "start": 40.08, + "end": 40.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 고", + "start": 40.44, + "end": 40.5, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 고", + "language": null + }, + { + "word": "객", + "start": 40.56, + "end": 40.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "객", + "language": null + }, + { + "word": "님", + "start": 40.74, + "end": 40.8, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "님", + "language": null + }, + { + "word": "은", + "start": 40.92, + "end": 40.98, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "은", + "language": null + }, + { + "word": " 어", + "start": 41.1, + "end": 41.16, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 41.16, + "end": 41.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 41.34, + "end": 41.4, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 41.46, + "end": 41.52, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "에서", + "start": 41.82, + "end": 41.88, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "에서", + "language": null + }, + { + "word": " 따라", + "start": 42.06, + "end": 42.12, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": " 따라", + "language": null + }, + { + "word": "가", + "start": 42.3, + "end": 42.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "기", + "start": 42.42, + "end": 42.48, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "기", + "language": null + }, + { + "word": "가", + "start": 42.48, + "end": 42.54, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": "힘", + "start": 42.6, + "end": 42.66, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "힘", + "language": null + }, + { + "word": "들", + "start": 42.78, + "end": 42.84, + "confidence": 0.542, + "speaker": 1, + "punctuated_word": "들", + "language": null + }, + { + "word": "까", + "start": 43.08, + "end": 43.14, + "confidence": 0.913, + "speaker": 1, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 43.2, + "end": 43.26, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "요", + "language": null + }, + { + "word": "?", + "start": 43.32, + "end": 43.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "?", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1d7c9d4e-a60d-4538-8520-be1aabb0ac25", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4a2ece10-9e82-48c0-a26a-53c8f9f9481b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e8826566-8de8-46dc-a011-6e666cc5c0e7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1652199e-c691-4fa1-a93d-3b239c277ef3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 0.30000000000000426, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음,", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "29c5507b-7443-445b-b8e3-1d1cf5cd88e5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "69ff74d2-6d3b-492b-a01a-96de0fac4d8b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 0.4200000000000017, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b66fb6bb-e2df-46d7-8147-1135e6eb7939", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "78e5185c-d56e-434b-a0fa-8f599ce687cb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 0.480000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7f5dcf37-5c58-4743-8272-b111b864805c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8862caf5-37ff-4146-a005-1aabe1e83dde", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 0.720000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e5dfc153-4a9e-4cdf-9176-7f468cd6edb1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "56ee8e12-665a-429f-ae33-2b1b7bd4373d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 0.9600000000000009, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7769a758-56c8-461f-ab30-2de058b406ad", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "afc5cd72-3085-4df2-a2bd-d3f208a9a8ef", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 1.0800000000000054, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1e887f2d-1aeb-4c6f-8fff-6847e49273ad", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "daac4670-d4ab-4d55-acaf-d54c17963a88", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 1.2600000000000051, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6ee553c4-1783-4279-8740-7750d144db59", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "56fc87e6-1fbf-4f17-8586-1f11433bfed2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 1.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6b07f5eb-873f-4e9a-b6ec-f8393d54a94a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "03d0c7b4-38b3-4c9d-bd06-a9245e436b24", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 1.6200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dbcd7686-8191-401f-92d0-9cb3b1101f27", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9e197d01-fb96-4ce8-8782-958b4d6028ea", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 1.740000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "294e3ec1-4086-485e-b9f4-3d176e5cda35", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "baa8eb50-f31b-40c0-a5a6-1b6c5ea3e3c1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 2.1000000000000014, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "24fb9e99-b614-4eb4-8722-4cb6a582916e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7f3cd073-6292-419b-9cb1-a198b0a2eee9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 2.220000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1dec7707-eb1d-401e-9fa9-93d45af61134", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "12a49f65-9664-4946-a526-2c0ee9212964", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 2.460000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6a108b21-6c4b-401c-9ccf-505d66fe839e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "60800525-22b6-4bfb-8650-3e0f0c33223b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 2.6400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "212da6f2-ae57-4cc1-a521-7c9ea76657d9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8b14ffb6-6885-4175-a27b-8cc599a59d16", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 3.5400000000000063, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "faa73bae-c8ac-4b0b-98c7-db1372e6c27e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "61500f28-a385-4ff5-9389-37ca2d87ed6d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 3.720000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "caec4808-6821-4c33-a64c-43805c8c422a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0fcaa9b5-c761-4679-bdd7-a90c2c50ca66", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 3.9000000000000057, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e48ccb50-8dfd-4354-af13-468680c4ed2e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b6d99126-d8ec-4cfb-ae29-42af60cf5ca5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 4.020000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5c1f4b1f-9808-436e-96df-3f9869f07bb8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d82823c9-60ab-4373-a041-e18950b61f34", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5672a23c-59c0-408b-b91e-54851afe1698", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e25f1ed9-3e8e-467a-aea9-718126a961c8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 4.380000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "20ef37a4-49fc-49d7-a88d-4b36fe2aa74a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8ac63f00-defb-4c91-8f98-cecfc0573d34", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 4.740000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "faa46c9a-167f-4cdb-98db-e470e86b2dd4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c626a600-aa93-458d-b8f8-29e0e50da7fb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 4.980000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영문", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1c8f121c-ef26-4b2a-81d3-b98da3b0ce84", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "35678f69-ff98-4eaa-8f22-9f4a375ab2a8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 5.220000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영문법", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "법", + "start": 49.14, + "end": 49.2, + "confidence": 0.887, + "speaker": 2, + "punctuated_word": "법", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c72fdd72-39b3-40e3-83da-0a1f7a3f120d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3f63f49e-407d-44b2-9394-543eef4963db", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 5.460000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영문법 강", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + }, + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "법", + "start": 49.14, + "end": 49.2, + "confidence": 0.887, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 강", + "start": 49.38, + "end": 49.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4f05d14e-747d-4400-9feb-8494fe923a98", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8a6c7f11-4ec6-44cb-be95-c2e278d9b36f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 43.98, + "duration": 1.5, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 음, 이번에 새롭게 올", + "words": [ + { + "word": " 음", + "start": 43.98, + "end": 44.04, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 음", + "language": null + }, + { + "word": ",", + "start": 44.22, + "end": 44.28, + "confidence": 0.864, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 44.34, + "end": 44.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "번", + "start": 44.4, + "end": 44.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "번", + "language": null + }, + { + "word": "에", + "start": 44.64, + "end": 44.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 새", + "start": 44.88, + "end": 44.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 새", + "language": null + }, + { + "word": "롭", + "start": 45.0, + "end": 45.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "롭", + "language": null + }, + { + "word": "게", + "start": 45.18, + "end": 45.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 올", + "start": 45.42, + "end": 45.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 올", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "238b88c4-78dd-477a-9445-48eb3e376997", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "93fe4f99-7bd6-4f3c-91cb-e509f1d00cce", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 45.54, + "duration": 4.020000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의", + "words": [ + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "법", + "start": 49.14, + "end": 49.2, + "confidence": 0.887, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 강", + "start": 49.38, + "end": 49.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 49.5, + "end": 49.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c174fdec-c700-4557-ba2a-57485dde239c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "970b922e-088f-41a4-9ec8-32999573a6d2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 45.54, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가", + "words": [ + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "법", + "start": 49.14, + "end": 49.2, + "confidence": 0.887, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 강", + "start": 49.38, + "end": 49.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 49.5, + "end": 49.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "가", + "start": 49.62, + "end": 49.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6b88fd2c-2745-40be-9fc1-e900b8e49c26", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9e8d4576-3b2b-4123-acb3-26f02b261703", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 45.54, + "duration": 4.32, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가 있어", + "words": [ + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "법", + "start": 49.14, + "end": 49.2, + "confidence": 0.887, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 강", + "start": 49.38, + "end": 49.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 49.5, + "end": 49.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "가", + "start": 49.62, + "end": 49.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 있어", + "start": 49.8, + "end": 49.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8edab87e-b6c5-41b1-97bc-3c044e803887", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c80bf876-a533-4c7b-a4a3-190bf6e091a0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 45.54, + "duration": 4.560000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가 있어요", + "words": [ + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "법", + "start": 49.14, + "end": 49.2, + "confidence": 0.887, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 강", + "start": 49.38, + "end": 49.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 49.5, + "end": 49.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "가", + "start": 49.62, + "end": 49.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 있어", + "start": 49.8, + "end": 49.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있어", + "language": null + }, + { + "word": "요", + "start": 50.04, + "end": 50.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9b00690d-da1b-48f6-a011-78d1c324c9db", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e5159469-f008-463b-8b5e-91cef4632527", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 45.54, + "duration": 4.68, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가 있어요.", + "words": [ + { + "word": "라", + "start": 45.54, + "end": 45.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "온", + "start": 45.66, + "end": 45.72, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "온", + "language": null + }, + { + "word": " 강", + "start": 46.02, + "end": 46.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 46.14, + "end": 46.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 중", + "start": 46.38, + "end": 46.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 중", + "language": null + }, + { + "word": "에", + "start": 46.56, + "end": 46.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 아", + "start": 47.46, + "end": 47.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "마", + "start": 47.64, + "end": 47.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "추", + "start": 47.82, + "end": 47.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "추", + "language": null + }, + { + "word": "어", + "start": 47.94, + "end": 48.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "를", + "start": 48.12, + "end": 48.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 위한", + "start": 48.3, + "end": 48.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 위한", + "language": null + }, + { + "word": " 영", + "start": 48.66, + "end": 48.72, + "confidence": 0.912, + "speaker": 2, + "punctuated_word": " 영", + "language": null + }, + { + "word": "문", + "start": 48.9, + "end": 48.96, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "문", + "language": null + }, + { + "word": "법", + "start": 49.14, + "end": 49.2, + "confidence": 0.887, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 강", + "start": 49.38, + "end": 49.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 49.5, + "end": 49.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "가", + "start": 49.62, + "end": 49.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 있어", + "start": 49.8, + "end": 49.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있어", + "language": null + }, + { + "word": "요", + "start": 50.04, + "end": 50.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 50.16, + "end": 50.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "198c795d-1e06-455f-a159-fc3a9820ae01", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f071ca1a-fd4d-4cc7-8e8a-a8deb64278da", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0a60a90b-1f29-4a1a-bd9e-4922f8fa1124", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bed4a351-a167-4528-9959-693cb44fa433", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 0.17999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "100e3835-ad25-4766-bd0e-ac27ef031071", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "160969c1-e11d-4fb9-9d2a-610fa1d11d7c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 0.5399999999999991, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e9ed2b55-101b-4328-bf2e-76b6ccc84fc8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a5878216-325a-4022-9b67-254cf03ffa21", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 0.720000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ee239a65-1c3a-46dc-b8cd-ea4daba4ee19", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f44748d8-1ad7-4741-a9e2-aaf5fcb67b63", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 0.9000000000000057, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "497cdf42-717c-4ec7-9376-ff14b3baf63a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4d2409f7-ffe1-433c-8c28-cb0b65d2ffa5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 1.0800000000000054, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "96536afd-b820-4e4e-8cce-5d44817b66a7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "edba6b85-e711-49b8-9089-c1cb13a831d0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 1.3200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "84114d88-cd0e-408c-8ff9-cf5894bfe871", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "35e608e6-42a6-47ed-8ee9-8a9805d038fa", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 1.6200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3002c72f-f82c-4c8b-9711-fb9221c43d0a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1cc7c29d-dce4-4cd0-afb5-bd733d3a62ab", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 1.740000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e8714242-93f4-4a2b-b33b-47df926487fc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e55d5457-d070-4fd3-8015-949239a92efb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 2.039999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "54b13397-0fc4-43ca-a249-98adc9fc2fcc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "65e6312a-d9bc-4101-bba4-c95073a86a1d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 2.1600000000000037, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d748244e-9b38-4b07-9a41-2486b73f7088", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "65ff3f7f-ea64-43d3-a672-4376526e8dd8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 2.3400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dff4183d-a355-44ff-9eff-b606500f32a1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5839bf0b-0f25-46a6-a517-f304ecd5b067", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 2.520000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e05fff13-4c66-4ccd-a064-767c6fde51bd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fc4bb41f-d0c0-4dae-a645-db3cdb32aec7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 2.6400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 ", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8be2ac81-7062-4371-b157-17066d61d7bd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d4cd0201-ea6e-453d-a1c9-4f13363a39fc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 2.700000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dddd5e75-614c-4e65-99ca-7a041f00b157", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b91f703f-5633-452c-b493-6db0b2dae09f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 2.8800000000000026, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7a0922f7-4c13-48fa-8e1b-cf3ec5a30250", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "95c66187-d149-4286-8c79-444e230c893d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 3.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8c15779e-2363-4e6b-9917-c10c43bc4ce7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7dd8d8fe-fcd9-4a0d-9373-c0987ba0ae97", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 3.8400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e00f086b-1aca-4508-9b43-4d66e1cc0e92", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4fac2522-ac86-4667-90ad-19b5a6dc3016", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 4.080000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "37779987-43a0-47d4-9a9d-e7db915ca7dc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "62f7f9e6-0cf3-456c-aa14-21b63b56d789", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5ddd560f-90f5-45f4-8f42-118105a0af27", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "682d3f20-73dd-4127-86af-9ea137c5c0b2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 4.380000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e4c3c6a6-8242-4957-9cc1-d96723148a4b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8cf3cc87-2e65-4b93-adcc-b2318b9a3879", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 4.6200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "afee73fc-10cb-4960-9a9b-03ef85bea6b5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "162b4200-94be-409f-97ae-39afb0343fa7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 4.740000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그래", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1f545346-6ae4-4a95-a7ca-064d460b5eef", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c6051884-a0c8-4de4-8436-ba4474eef67c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 4.859999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그래도", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3a9d4ea9-d09a-4c63-b69c-6c84d974ea67", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f6b0130f-a582-418f-b10f-acc999525b53", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 5.160000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그래도 무", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + }, + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.22, + "end": 56.28, + "confidence": 0.971, + "speaker": 2, + "punctuated_word": " 무", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fedd05f8-554f-4bc3-b7d5-57e6a58ebbf6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f67b3c4e-f245-4847-ba82-f90c61cccc4f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 51.12, + "duration": 1.0800000000000054, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 레벨 테스트", + "words": [ + { + "word": " 저", + "start": 51.12, + "end": 51.18, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 51.24, + "end": 51.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 레", + "start": 51.6, + "end": 51.66, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 51.78, + "end": 51.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": " 테", + "start": 51.96, + "end": 52.02, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 테", + "language": null + }, + { + "word": "스트", + "start": 52.14, + "end": 52.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "스트", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dec74791-c4fd-4b2d-96fb-4f34a9dc53ed", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c942e591-e6b1-47c1-b157-cef0d0b92163", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 3.960000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d8511a8a-23a8-49ad-8f19-c3bb37586604", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "64d87722-3528-4526-9589-788e51dc583b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9be8f520-3acc-4a16-9898-43cee84af4c7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2b761e34-9d05-4404-aba2-be5c594e7b65", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 4.199999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4cc7000c-4870-40af-9a33-a2338c15ca3a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5f1e6e79-fe9f-4345-9011-61ed7241ff32", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 4.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dfebbe67-3a55-4a08-9615-d965442c00eb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "84bd3c5a-b673-4d31-9faf-724619fb0afa", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 4.739999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "eed44b2a-2dfc-42ef-b264-257ff7501ae5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a139481b-933d-4a58-b58d-825fa35dcfe2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 4.859999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "76aa5ab5-874b-4e0a-9731-534f87b3970c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e7a14682-57f0-4c13-88fa-e79469028d0a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 5.039999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8c88a95b-ee94-4053-854a-b1863985279a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7bce0d49-c48a-452f-88af-dde1b9a97373", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 5.159999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "df56e59e-ce75-46ca-90bd-bd89c4194bc9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d52981af-168a-4e21-9f45-4d03e750463f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 5.460000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠다", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6f1b2232-a745-43e9-98e2-c278d8f2fad1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cfee034d-14a9-4c46-8f60-294a45bd50ce", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 5.699999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠다라는", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3a8bb7e8-11f2-467f-a3f5-bf5b8896b017", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c2152ecf-82ac-4b2c-851d-aa95004c24e3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 5.939999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + }, + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + }, + { + "word": " 생", + "start": 58.26, + "end": 58.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9aaea3ac-8774-4b5f-b9c5-539010470a8b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8a999c51-5214-4166-be45-c07a880d0e7a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 52.38, + "duration": 1.7399999999999949, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "에 문법 부분이 다 맞아서", + "words": [ + { + "word": "에", + "start": 52.38, + "end": 52.44, + "confidence": 0.946, + "speaker": 2, + "punctuated_word": "에", + "language": null + }, + { + "word": " 문", + "start": 52.68, + "end": 52.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 52.8, + "end": 52.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": " 부", + "start": 53.1, + "end": 53.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 53.22, + "end": 53.28, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 53.4, + "end": 53.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 53.58, + "end": 53.64, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "맞", + "start": 53.76, + "end": 53.82, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "맞", + "language": null + }, + { + "word": "아", + "start": 53.94, + "end": 54.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": "서", + "start": 54.06, + "end": 54.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "서", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "71704216-d7de-4099-8b99-fe007358910c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ef7a8be0-2f9e-47cd-a916-57cc82a1f723", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 54.9, + "duration": 3.480000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각", + "words": [ + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + }, + { + "word": " 생", + "start": 58.26, + "end": 58.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 58.32, + "end": 58.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f35eb7bc-e601-4b62-ad2e-02ad47a5f3fc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "10f319fd-9819-4654-8cab-ad3c5f87e831", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 54.9, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이", + "words": [ + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + }, + { + "word": " 생", + "start": 58.26, + "end": 58.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 58.32, + "end": 58.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "이", + "start": 58.56, + "end": 58.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3f754cc7-989b-4b62-a8fa-b05ecee31865", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b1f0b293-e62f-4bc7-94b9-21b19124cdcd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 54.9, + "duration": 3.8999999999999986, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들", + "words": [ + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + }, + { + "word": " 생", + "start": 58.26, + "end": 58.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 58.32, + "end": 58.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "이", + "start": 58.56, + "end": 58.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "들", + "start": 58.74, + "end": 58.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "들", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9b9602c8-77ea-4d12-ae07-32a121c444fa", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "78549b7c-5245-4961-8e59-832e5632553a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 54.9, + "duration": 4.020000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들었", + "words": [ + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + }, + { + "word": " 생", + "start": 58.26, + "end": 58.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 58.32, + "end": 58.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "이", + "start": 58.56, + "end": 58.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "들", + "start": 58.74, + "end": 58.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "들", + "language": null + }, + { + "word": "었", + "start": 58.86, + "end": 58.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "었", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "93dcd9a8-83fe-4c73-85a0-846abebb7c15", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "04a07268-aa56-482e-89d8-d67c4ed33f33", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 54.9, + "duration": 4.259999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들었어요", + "words": [ + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + }, + { + "word": " 생", + "start": 58.26, + "end": 58.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 58.32, + "end": 58.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "이", + "start": 58.56, + "end": 58.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "들", + "start": 58.74, + "end": 58.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "들", + "language": null + }, + { + "word": "었", + "start": 58.86, + "end": 58.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "었", + "language": null + }, + { + "word": "어", + "start": 59.04, + "end": 59.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "요", + "start": 59.1, + "end": 59.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "66c3b852-3976-4888-a720-fc8f47f100ed", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5d2ce37f-cb0d-4966-b0ed-3b785b89b2da", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 54.9, + "duration": 4.380000000000003, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들었어요.", + "words": [ + { + "word": " 이", + "start": 54.9, + "end": 54.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": " 강", + "start": 55.14, + "end": 55.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 55.26, + "end": 55.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "는", + "start": 55.44, + "end": 55.5, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 그", + "start": 55.68, + "end": 55.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "래", + "start": 55.8, + "end": 55.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": "도", + "start": 55.92, + "end": 55.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": " 무", + "start": 56.28, + "end": 56.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 무", + "language": null + }, + { + "word": "난", + "start": 56.4, + "end": 56.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "난", + "language": null + }, + { + "word": "하게", + "start": 56.52, + "end": 56.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하게", + "language": null + }, + { + "word": " 들어", + "start": 56.82, + "end": 56.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": "볼", + "start": 57.06, + "end": 57.12, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 57.18, + "end": 57.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 57.36, + "end": 57.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 57.48, + "end": 57.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "다", + "start": 57.78, + "end": 57.84, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": "라는", + "start": 58.02, + "end": 58.08, + "confidence": 0.987, + "speaker": 2, + "punctuated_word": "라는", + "language": null + }, + { + "word": " 생", + "start": 58.26, + "end": 58.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 58.32, + "end": 58.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "이", + "start": 58.56, + "end": 58.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "들", + "start": 58.74, + "end": 58.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "들", + "language": null + }, + { + "word": "었", + "start": 58.86, + "end": 58.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "었", + "language": null + }, + { + "word": "어", + "start": 59.04, + "end": 59.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "어", + "language": null + }, + { + "word": "요", + "start": 59.1, + "end": 59.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 59.22, + "end": 59.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "717a2aac-9b5b-4729-848e-d09ceaec3ebd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1ebab8c0-4399-45c9-91c8-cc956fa55da7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 0.05999999999999517, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2017c2b3-4471-47ca-9f6b-575dba585419", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e9116aa2-7b2d-4429-b5bd-ba6fe753bdfd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 0.17999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c9716be4-56c9-4f4a-a5fd-e9b24296ff15", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "70107696-1e85-4877-a036-eef8fd568a75", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 0.29999999999999716, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "01bec70c-12b3-46bb-b98c-86b5da3ce0c8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "36f9a52b-9e41-48a3-9cd8-40f55baf8daa", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 0.7800000000000011, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1c229333-dd0a-4fd4-9cb6-05c72cd9679c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "36818def-96a4-4ea5-bdd5-4082a799b933", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 1.3200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "07a2ad13-352e-445e-8cca-2d0b9c976309", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "15da668b-1110-4e5c-bd8a-bedce405a95f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 1.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5e946abc-37ba-48bf-b7f5-8841c294c4bd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bea3cbc5-858d-478b-bed0-afdd11ace458", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 1.8599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사,", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d1535cb7-3b4c-462d-8d06-60249a346b7b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "401a00fe-c391-4e13-86a9-bfd8e46c0650", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 2.1599999999999966, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4e872deb-92c4-408b-a6c8-26f2c8cc283f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c5ef8fba-ae31-47ea-bca1-f9a0b1023978", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 2.3399999999999963, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9d533e27-78d3-416e-aa2c-ec029c8a7532", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cbf98d1a-7de6-4a62-b13b-93532b4236c4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 2.519999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "56b827af-e102-400a-8f62-001cb9b09d18", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "be4c928a-ad41-4fb8-8f8a-43f43d4a98dd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 2.6999999999999957, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f1bd118d-eea3-46b4-9d20-a54de07451a3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f7a91e63-963b-4455-aecd-eadb8d25c7d8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 2.9399999999999977, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8ce4cab8-8624-4b6e-99ab-e65caa29334a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cb8313a4-67c6-4c21-8d85-a13a91c2cd47", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 3.1199999999999974, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5da9f00a-ec83-4788-8488-72b7b91c22a9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "81fdfcdf-48ac-4d93-a958-4073a6640845", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 3.239999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a277dc21-d780-48f9-9a45-68aedcb8a62c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8e40cf69-0df6-4ac6-adee-ba3c9c3fffbb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 3.479999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cb8d46f4-8015-4198-b80c-60d8a81a5134", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "30dfb662-f2cb-4833-bdb2-42c5ec6ebc90", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 3.6599999999999966, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "647b8dc7-ff5e-4906-898d-e60b1b0aa056", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "11bb56de-1477-408d-96cc-d10c3a864a16", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 3.8999999999999986, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fcb3c8ca-8d64-4e3a-96ac-2c9a4eb8df5a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f6ac9f88-245c-4dc8-8947-64bc0e8ac921", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b22fe398-c5c8-4082-ba96-9a6ab9d15b0b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d1acfaad-c4f3-4712-9fd2-15a68727f408", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8a18b1dd-61dc-48b4-8824-7f68687df970", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "682d9304-4731-418c-bc44-62a113fd811f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 4.560000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각할", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c67b9a66-810c-4805-a3c8-be75a25f0f91", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f9794ad0-b8f6-49ed-8fc5-cdba78dee1c0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 4.799999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각할 수", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f17c4146-bf54-4f7f-b490-1c6e17d2b9a5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f7f47b87-f9e5-4423-b7bc-9b95e4292832", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 5.099999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각할 수 있", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "18f557a6-1b1e-488f-8b88-7868841e607e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e65dbbc0-1471-48a8-8bd2-d2358c1f6dfb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 60.06, + "duration": 0.7800000000000011, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 예를 들어 현재", + "words": [ + { + "word": " 예", + "start": 60.06, + "end": 60.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 예", + "language": null + }, + { + "word": "를", + "start": 60.18, + "end": 60.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 들어", + "start": 60.3, + "end": 60.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 들어", + "language": null + }, + { + "word": " 현재", + "start": 60.78, + "end": 60.84, + "confidence": 0.992, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d6d00f11-2dc3-46c6-9d18-5af5d4d17871", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3d50ec6b-c41a-48fc-ba96-47ce354a833f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 4.020000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f29dc5fa-516e-478f-ad9e-fb689454f4e3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1aa894d4-d22a-4def-9c49-e04aacb76694", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 4.380000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데,", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5fb1420e-8231-4429-9c8e-e622e1935867", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "24053d8b-e08f-4b31-88d4-6b5a9de73bb8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 5.160000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8fc1090e-49b5-4738-af83-b4d3856361cf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a194e64a-a218-49ab-bc8f-5e3e58b97432", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 5.279999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "96ce524d-7a36-4a62-9ab4-30e5028e48aa", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "31e7c4de-51ed-421e-a2db-7a7e775ba311", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 5.399999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "443df48b-cdc5-4fc5-b0c8-002155019c15", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a2a49e01-6663-42b6-a1dd-5bbfb062bcc9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 5.699999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게 제", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4cf6a42a-2b8e-43f7-8f00-84fac53f4a19", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "aee530ce-4dbe-49ca-a3a4-34a704e75402", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 5.82, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게 제가", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4b7ff4e8-b921-4205-ac57-c3c710b0d230", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0d830f03-f34e-494b-bc7f-6278ceee9e9d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 5.999999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ae534a52-5421-4b6d-96d7-1fdc062da320", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "44f98cc8-55d4-4706-a02e-a62d0ec5ab4f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 61.32, + "duration": 1.9799999999999969, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 분사, 과거 분사라든지", + "words": [ + { + "word": " 분", + "start": 61.32, + "end": 61.38, + "confidence": 0.822, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 61.5, + "end": 61.56, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": ",", + "start": 61.86, + "end": 61.92, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 과", + "start": 62.16, + "end": 62.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 과", + "language": null + }, + { + "word": "거", + "start": 62.34, + "end": 62.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "거", + "language": null + }, + { + "word": " 분", + "start": 62.52, + "end": 62.58, + "confidence": 0.981, + "speaker": 2, + "punctuated_word": " 분", + "language": null + }, + { + "word": "사", + "start": 62.7, + "end": 62.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "사", + "language": null + }, + { + "word": "라", + "start": 62.94, + "end": 63.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "든", + "start": 63.12, + "end": 63.18, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 63.24, + "end": 63.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1bd15742-5156-449f-9fd2-42f1180c0742", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "582d894c-a229-4f1a-97da-f412acbc4796", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 3.8399999999999963, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a4a7e93d-5e76-490e-8de3-1728eecd2fdc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d378b093-e75a-40f7-9563-40b16035fb7a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 4.20000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "098818fd-4781-4d11-9598-c89e64664e50", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c2b61e19-f217-41eb-a652-ef1bf2e7b2ed", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 4.500000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7a3e2676-41e5-41e1-b01d-17e07a8e2da3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ebea6717-cece-4aef-92bd-c68661cbf1d4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 4.740000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2ff56065-9b9a-4492-9e17-d6d313b6a8bd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0f7a9689-5643-48c6-9aa2-7b5d20413d9a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 4.8600000000000065, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2ba78bfc-578e-43a7-8793-42078a780a4f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "52ab7fb3-b714-423d-af2a-b9ebd5bdfe89", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 5.039999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ac9a78f6-70bf-408e-bb5f-a11d46f07af5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fba17de8-7109-4f78-9b4b-aebba05840c4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 5.220000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b7e8fe4b-4a9a-4a57-862b-b119a0d7a808", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "df29fa8d-e90f-4dd2-9d9b-c5a40c1734bf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 5.399999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fba74b1a-7593-4b9b-bb0b-1639d409ce60", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a4290f67-8e34-4c81-8ea5-00bb7525b9fe", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 5.460000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도 ", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d0882d7f-f103-47db-aeb4-d5dd6ebaa052", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b522bcd3-e864-42b7-97d2-4bdaa2483de5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 5.640000000000008, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도 너무", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "너", + "start": 69.0, + "end": 69.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 69.06, + "end": 69.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7306be43-cbd9-4e22-8976-b34dc39d4a44", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b72a035d-4318-4d8e-8a91-c019feeafb02", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 5.880000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도 너무 달", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + }, + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "너", + "start": 69.0, + "end": 69.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 69.06, + "end": 69.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": " 달", + "start": 69.3, + "end": 69.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 달", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "07b6a4d2-a324-4271-8d20-fc1be5dae38d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1da1c950-fd7b-4f3f-b4d6-def9b835e34f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 63.48, + "duration": 1.8600000000000065, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 이런 걸 생각할 수 있겠", + "words": [ + { + "word": " 이", + "start": 63.48, + "end": 63.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 63.66, + "end": 63.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 걸", + "start": 63.9, + "end": 63.96, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 걸", + "language": null + }, + { + "word": " 생", + "start": 64.08, + "end": 64.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 64.2, + "end": 64.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "할", + "start": 64.56, + "end": 64.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "할", + "language": null + }, + { + "word": " 수", + "start": 64.8, + "end": 64.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 65.1, + "end": 65.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "겠", + "start": 65.28, + "end": 65.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "겠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3139499d-e504-46bf-9a26-dec022c713c1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5b9cfb3b-2158-44cc-8a80-cc214143c146", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 65.64, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달", + "words": [ + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "너", + "start": 69.0, + "end": 69.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 69.06, + "end": 69.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": " 달", + "start": 69.3, + "end": 69.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 달", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9adc7fb4-ac8e-48a6-86fd-b52261f5b0dd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0f049e73-5ec5-42c6-a784-b00f5aec33bd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 65.64, + "duration": 3.9000000000000057, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달라", + "words": [ + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "너", + "start": 69.0, + "end": 69.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 69.06, + "end": 69.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": " 달", + "start": 69.3, + "end": 69.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 69.48, + "end": 69.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9e79f5f0-a6f8-43a7-a926-5b717214ae22", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "29aa5892-8718-4b56-bbe6-101cd9da1d52", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 65.64, + "duration": 4.019999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달라요", + "words": [ + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "너", + "start": 69.0, + "end": 69.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 69.06, + "end": 69.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": " 달", + "start": 69.3, + "end": 69.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 69.48, + "end": 69.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "요", + "start": 69.6, + "end": 69.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b3dd5f92-081f-4f35-b91d-94d3ff44a380", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "be039ec8-6d93-4cc0-b670-588f2a65484c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 65.64, + "duration": 4.200000000000003, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달라요.", + "words": [ + { + "word": "는데,", + "start": 65.64, + "end": 65.7, + "confidence": 0.953, + "speaker": 2, + "punctuated_word": "는데,", + "language": null + }, + { + "word": " 이", + "start": 66.42, + "end": 66.48, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "렇", + "start": 66.54, + "end": 66.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "렇", + "language": null + }, + { + "word": "게", + "start": 66.66, + "end": 66.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 제", + "start": 66.96, + "end": 67.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 67.08, + "end": 67.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 생", + "start": 67.2, + "end": 67.26, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 67.26, + "end": 67.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": "한", + "start": 67.62, + "end": 67.68, + "confidence": 0.93, + "speaker": 2, + "punctuated_word": "한", + "language": null + }, + { + "word": " 것", + "start": 67.92, + "end": 67.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 것", + "language": null + }, + { + "word": "과", + "start": 68.16, + "end": 68.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": "는", + "start": 68.28, + "end": 68.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 달", + "start": 68.46, + "end": 68.52, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 68.64, + "end": 68.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "도", + "start": 68.82, + "end": 68.88, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "도", + "language": null + }, + { + "word": "너", + "start": 69.0, + "end": 69.06, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "너", + "language": null + }, + { + "word": "무", + "start": 69.06, + "end": 69.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "무", + "language": null + }, + { + "word": " 달", + "start": 69.3, + "end": 69.36, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 달", + "language": null + }, + { + "word": "라", + "start": 69.48, + "end": 69.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "라", + "language": null + }, + { + "word": "요", + "start": 69.6, + "end": 69.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 69.78, + "end": 69.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c9136e50-df22-44d9-b5b6-881dc64fd1e1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4ccaca70-c2a6-4c08-8a38-c1d9424adbc7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d1268570-8e40-4f37-9f4a-658c59ac43b6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1aa5b180-2870-44a8-875b-e12e02f7e4b1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 0.23999999999999488, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a641fc70-6808-489c-8aed-c0a5210b47ab", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d29f4730-885a-4643-8a65-38389fad67af", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 0.35999999999999943, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e395d242-4e10-4d1d-b6d2-1e11ee71282d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "82cf3aeb-2401-4fd8-9c9e-ccb894b0e4a5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 0.480000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부분", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 70.98, + "end": 71.04, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4b3e5f9f-7928-4fb2-86d4-5ac964ccb5d1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e94686a1-b862-40f9-b151-dd80c02b8a8a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 0.6599999999999966, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부분이", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 70.98, + "end": 71.04, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 71.16, + "end": 71.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "33efd92f-9e55-46b0-a1a8-5d4571b0689f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "89f07039-6fb6-42ab-9b8f-46a78bb59110", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 0.8999999999999915, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부분이 다", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 70.98, + "end": 71.04, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 71.16, + "end": 71.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 71.4, + "end": 71.46, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2210a5f2-e332-4816-b8d6-f0c5aa6f3c52", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "47ee5c33-7f23-49b0-ab8e-61616bd9a4f0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 1.019999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부분이 다를", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 70.98, + "end": 71.04, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 71.16, + "end": 71.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 71.4, + "end": 71.46, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다", + "language": null + }, + { + "word": "를", + "start": 71.52, + "end": 71.58, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "798ea9e5-530d-4de7-8f5f-ace5b15a84b7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "dad17fc5-03a5-45ff-9874-fb27c77779c2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 1.1400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부분이 다를까", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 70.98, + "end": 71.04, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 71.16, + "end": 71.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 71.4, + "end": 71.46, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다", + "language": null + }, + { + "word": "를", + "start": 71.52, + "end": 71.58, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "까", + "start": 71.64, + "end": 71.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "까", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7005c307-3223-4b59-950e-f621be4dbc92", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c46c25b4-b848-48a6-ac23-e9f1edfc096b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 1.259999999999991, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부분이 다를까요", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 70.98, + "end": 71.04, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 71.16, + "end": 71.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 71.4, + "end": 71.46, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다", + "language": null + }, + { + "word": "를", + "start": 71.52, + "end": 71.58, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "까", + "start": 71.64, + "end": 71.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 71.76, + "end": 71.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1682b07e-2d00-47a4-9684-62c9d1464e89", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9e6e4492-dc1c-44c8-bbd8-ab8acd3607b2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 70.56, + "duration": 1.3799999999999955, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어느 부분이 다를까요?", + "words": [ + { + "word": " 어", + "start": 70.56, + "end": 70.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "느", + "start": 70.74, + "end": 70.8, + "confidence": 0.998, + "speaker": 1, + "punctuated_word": "느", + "language": null + }, + { + "word": " 부", + "start": 70.86, + "end": 70.92, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "분", + "start": 70.98, + "end": 71.04, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "분", + "language": null + }, + { + "word": "이", + "start": 71.16, + "end": 71.22, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "이", + "language": null + }, + { + "word": " 다", + "start": 71.4, + "end": 71.46, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다", + "language": null + }, + { + "word": "를", + "start": 71.52, + "end": 71.58, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "까", + "start": 71.64, + "end": 71.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "까", + "language": null + }, + { + "word": "요", + "start": 71.76, + "end": 71.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "요", + "language": null + }, + { + "word": "?", + "start": 71.88, + "end": 71.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "?", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "079b2ef1-d221-4444-803c-22d26386c888", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ee885a8d-b211-4e0f-ad5b-8442254666b7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "87300fdc-ba42-4797-913c-7e3c9c6ea302", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4cb45630-094c-4a94-9972-5d44b7688414", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 0.35999999999999943, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f5d6297a-b19a-4559-b92c-47dea51609a5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6c436488-1efa-4bf0-a9a3-610fe4e66dd8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 0.6599999999999966, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b0db8905-0ed2-4059-b80a-5f679d59ed4d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6932556c-4ef7-4f8b-a2f1-e18e3964dc26", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 0.7800000000000011, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d82ac7fb-eb52-41ee-97cf-2c92fe3f1a51", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "88843e72-34c3-4ab5-be94-51e8b18419f6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 1.019999999999996, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ec9f2a99-ba0a-498a-8c2d-db69a1c708c5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4fd85007-2828-45fb-bdba-dcbb479c05a0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 1.2000000000000028, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3d8e488a-7392-46c2-86b3-23d47357f027", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5d04858a-42cd-434c-b600-4f57a68d8d7a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 1.3799999999999955, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9976fd3b-1b19-446b-830e-be4f25ac0228", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b90691ef-090d-41d9-a53e-3c836ba5c90e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 1.5600000000000023, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8994e79f-ef66-41dd-a889-4de3ae1f5328", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c7d07087-a331-4408-9405-a6ab2c8ebc98", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 1.7999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dbfc3ca6-9fd2-4619-8241-a6f8ee2c7df1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "143367dd-c9a7-4f60-adb5-77dde69fc1ef", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 2.039999999999992, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5909f14b-13bb-4ced-93d6-15edda94e2d9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e2dcefce-687e-4296-82fa-971853463563", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 2.4599999999999937, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6fbe3af6-aad5-4e79-af6d-c4f51bdbf57c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a0d47ec7-3536-49f7-93dc-796f99bdb5f0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 2.5799999999999983, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2ced65a7-8448-4dec-837d-9b69879c7581", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c121d6e4-9a1e-42dd-80f6-6d77dcb2bf7b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 2.760000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "099e0062-eabc-4969-aca6-5174504a00be", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d052354a-a5be-4814-84fa-f015aa28656d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 2.9399999999999977, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9d24d8de-d680-4858-9fe3-6a41a84bda49", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "763a103d-0a4a-45b1-82ca-d1bad8ebbff9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 3.1799999999999926, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fad52e7b-649e-4864-b2e3-fafd13daff16", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "dd346505-016b-44c8-869f-c942e87b7a6d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 3.3599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ac56abac-794a-4cd5-8f3f-8dcfc41f2ace", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "398ee701-8960-45dd-acdd-db557aec4bdc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 3.480000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2d28808a-1b01-449f-9cb1-3f0f70e4521d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e792719a-0cfd-46fa-b8c6-4a5406aba95e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지,", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5e4e5a96-6e2a-4cda-ae8e-df2d13fe7a79", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d70c3d95-c19f-42b3-9890-00efe48e26e7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6a1670b9-57c8-4e86-8210-9252ee290cc4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bca7005d-0a1c-4671-9794-e0fdec5297ca", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 4.319999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a72851b2-97e5-4e41-b464-f047fc8231ca", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "328eb75e-6232-404e-8306-84ab3fd1c31e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 4.560000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "12949376-8c00-458a-ab7e-db318b249004", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "636a5498-f361-4c14-93e8-3dbad5c4ff23", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 4.799999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b160cb4a-40d1-4bfb-b9fa-8f6ee9cdd154", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8d2465cd-846f-4367-8281-30bf680407d6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 4.980000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6329a6b8-ec48-4225-b31e-9c4fc32d0601", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bae0e5e1-3f04-4c61-93e5-5a6d1db8b9e0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 5.159999999999997, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의 끝", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "21d5452a-4b07-4a93-af79-bffc7f2b57f3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "44f7f955-22d5-44ff-9872-fb7ccc39cfed", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 5.280000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의 끝날", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "618a02ac-48e6-4bc8-8ea3-b92eb79f585e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "341e9e15-5d10-48c2-9b53-81a310e1e519", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 5.459999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의 끝날 때", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + }, + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c5e235de-ad1e-4f15-9eae-751ee50d16fe", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ef0134e1-4336-4018-8e61-940ba7999eef", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 72.42, + "duration": 1.5600000000000023, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 대학생 수준 같아 보이는", + "words": [ + { + "word": " 대학", + "start": 72.42, + "end": 72.48, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": " 대학", + "language": null + }, + { + "word": "생", + "start": 72.72, + "end": 72.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "생", + "language": null + }, + { + "word": " 수", + "start": 73.02, + "end": 73.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 73.14, + "end": 73.2, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": " 같", + "start": 73.38, + "end": 73.44, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 같", + "language": null + }, + { + "word": "아", + "start": 73.56, + "end": 73.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "아", + "language": null + }, + { + "word": " 보", + "start": 73.74, + "end": 73.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 보", + "language": null + }, + { + "word": "이는", + "start": 73.92, + "end": 73.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7a890d86-0c70-47d0-9609-d560a9d08c37", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "71236b40-08ec-4cca-91a0-eb3a91b51ec5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 3.960000000000008, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a60ab47e-3bcb-472b-a105-f1e15917e3a9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6db21268-ef22-4d0d-845c-e3c2ca36fda0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bb86cb2e-7e86-42da-bc1b-e6dc334db9bf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2fd4055f-fa33-44db-84d9-28b17debf74c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 4.38000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d0c88d73-139d-418f-8e9c-79068836a58a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "83290693-4367-4d43-a12c-ab3048c98e5c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 4.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "772ffe17-c15f-4789-99c6-666b0597aabd", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "39f6cab8-de4b-4ce3-a9a2-8121a4faee14", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 4.680000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f2005b1b-33d3-474f-95f3-fbf44c9a71c7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "da51e726-9987-49fd-a7fa-bbf48272df03", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 4.980000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 ", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d7f24c9e-5794-441a-a540-e42b89ac0a26", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5a3e98cb-65db-4f09-9e13-15ae900dd0f7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 5.1000000000000085, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "228360f1-1276-4f64-b61e-664d97cfed4c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "20af09f6-3f10-404f-b074-215fd58e13f9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 5.280000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fe302c23-2644-4cc1-95de-bfd4c3de0527", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7e74d037-7f19-43cd-885a-fbe9603f51be", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 5.400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1f09a8a6-4719-48ac-9933-641f66017592", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "dc50233d-921e-4059-9f40-3d65093f2170", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 5.640000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의 탕", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탕", + "start": 79.8, + "end": 79.8, + "confidence": 0.377, + "speaker": 2, + "punctuated_word": "탕", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d195ed15-26b1-44fd-af19-a379582d9ef3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f17c27a5-b142-4811-966e-bdbce9202d7e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 5.640000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의 탐", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "58e5c57e-9979-4220-aa45-6f03e38de025", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6959995a-e0d9-48d0-9c68-d16198c423d2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 5.820000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + }, + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f50e86cd-09de-41a5-970c-f4c4b671801b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8151398c-baf7-4a47-92f6-511779d70835", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 74.16, + "duration": 1.740000000000009, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저를 구로 변환이라든지", + "words": [ + { + "word": " 저", + "start": 74.16, + "end": 74.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "를", + "start": 74.4, + "end": 74.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 구", + "start": 74.82, + "end": 74.88, + "confidence": 0.756, + "speaker": 2, + "punctuated_word": " 구", + "language": null + }, + { + "word": "로", + "start": 74.94, + "end": 75.0, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "로", + "language": null + }, + { + "word": " 변", + "start": 75.12, + "end": 75.18, + "confidence": 0.985, + "speaker": 2, + "punctuated_word": " 변", + "language": null + }, + { + "word": "환", + "start": 75.3, + "end": 75.36, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "환", + "language": null + }, + { + "word": "이라", + "start": 75.54, + "end": 75.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이라", + "language": null + }, + { + "word": "든", + "start": 75.72, + "end": 75.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "든", + "language": null + }, + { + "word": "지", + "start": 75.84, + "end": 75.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "89552d5a-634e-4106-b6c1-ba7ed37ef6ce", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "24e061e1-1af6-4ec5-aa2f-e2356714b150", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 3.9000000000000057, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4b66cc43-5736-4554-bffe-c5cc6e11edac", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e6305350-0592-4f85-ac46-a6cbd6f5f5cc", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "01cbb9fa-f88d-4308-beac-396c848f8b80", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3600d63d-c6dd-45e6-85c6-9e5c053f8ae3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 4.320000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d88090e8-c72f-4ff1-b7a8-25a77efdc7a6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c6540961-f451-444d-84c8-dff5bc2d2bc5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 4.6200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "861fc6e5-f5d6-43ce-8701-8d279b866e44", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "12ee974a-025c-43f2-82ea-f54fd9a1cdfe", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ebd6d21f-77e1-44b4-8a1a-6ea8d4b6af7a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "170095ca-5d88-4a42-9f27-c99dd314b221", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 5.340000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이런", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "aa37103d-75cb-4a46-8b04-6ea424abc623", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "267b9e82-a299-4bce-8cc8-227aefd60389", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 5.579999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이런 문", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "46287a18-1dd7-4754-88a3-3d29330340ef", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "512f6850-5ae2-4ea5-8498-39a58a35c92d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 5.820000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이런 문제", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + }, + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7c6e8a2c-2170-45f7-8a1e-702149f04df7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7d831622-f3de-49e1-bb80-155a934888c2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 76.08, + "duration": 2.0400000000000063, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": ", 이런 게 강의 끝날 때마", + "words": [ + { + "word": ",", + "start": 76.08, + "end": 76.14, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": ",", + "language": null + }, + { + "word": " 이", + "start": 76.5, + "end": 76.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 76.68, + "end": 76.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 게", + "start": 76.92, + "end": 76.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 게", + "language": null + }, + { + "word": " 강", + "start": 77.16, + "end": 77.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 77.34, + "end": 77.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 끝", + "start": 77.52, + "end": 77.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 끝", + "language": null + }, + { + "word": "날", + "start": 77.64, + "end": 77.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "날", + "language": null + }, + { + "word": " 때", + "start": 77.82, + "end": 77.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 때", + "language": null + }, + { + "word": "마", + "start": 78.06, + "end": 78.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "마", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d1824e53-a5e4-47ee-b01c-17ab590a6b27", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5d134a23-ca64-45f1-9de1-a5e6dcb1e4a3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "579ff6a1-7eb5-4fe0-8c97-a4bf0bf4c224", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8e58dacb-0c90-4638-9513-976cd05d0071", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 4.139999999999986, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 ", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a2849830-2862-453d-b0ac-5f5c0d2b551f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "610b9aee-c390-4924-840e-bcd264eea514", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 4.259999999999991, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6cbed81b-3d5c-450e-9fb2-3adb6485da9d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a7a8dd1c-5001-4d6f-b491-d3452ef794c1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 4.439999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "26ab2fbc-1d2b-4228-b2f3-3e21b0092045", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7013363b-49e7-46ce-91ea-7f5ed625df7b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 4.679999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "29bc00d1-deb4-4399-a50d-b57508ee7203", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b6331bdb-7905-4612-97ca-917cd73ac48a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 4.859999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "69201bec-cb36-445b-b77d-a5f10d71a5fb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ae14d602-f67d-4075-958f-4037965fa806", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상 기", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "585f7926-65ea-42b1-9841-6c69c8307544", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3160c809-ff87-4313-b07a-9ca0df74dc42", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 5.339999999999989, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상 기준", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9d4b6065-8d70-40c1-a397-4a1411727eaa", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f484d9d5-0a29-4bd2-a729-4ed79372019e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 5.639999999999986, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상 기준점", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + }, + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d5ec4b7f-2e73-43a4-b331-b3659f2f5bda", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8db61e37-f1fe-4674-9a18-a832771b53b7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 78.18, + "duration": 1.7999999999999972, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "다 나오는 잠깐의 탐과", + "words": [ + { + "word": "다", + "start": 78.18, + "end": 78.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 나", + "start": 78.48, + "end": 78.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "오", + "start": 78.6, + "end": 78.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "오", + "language": null + }, + { + "word": "는", + "start": 78.78, + "end": 78.84, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": "잠", + "start": 79.2, + "end": 79.26, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "잠", + "language": null + }, + { + "word": "깐", + "start": 79.38, + "end": 79.44, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "깐", + "language": null + }, + { + "word": "의", + "start": 79.5, + "end": 79.56, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": "탐", + "start": 79.8, + "end": 79.8, + "confidence": 0.484, + "speaker": 2, + "punctuated_word": "탐", + "language": null + }, + { + "word": "과", + "start": 79.92, + "end": 79.98, + "confidence": 0.758, + "speaker": 2, + "punctuated_word": "과", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3641bddc-9d4f-4efc-ae65-5970ef8ae78f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1cadd7dd-f350-4823-b78f-746ee099bfd8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 3.6599999999999966, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b25b229d-7cac-4b2a-81fe-50e0b5f51e96", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "15f3ab65-11cb-49db-ba4a-dd8993258a31", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 7", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4abafb0a-8f10-4c9e-895c-31ebd6b3f669", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c07a8f1f-cfcd-4e3a-b707-b5a1025103dd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 4.38000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e6c6bd8b-304f-4f69-b26a-58bd42d95d39", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6fd97b1f-dac6-423d-adc5-05dd445f78f2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 4.6200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "47a8927a-43f5-4512-bdf8-308f550b949c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5b406623-ee1f-4f19-808e-7e8639ae25e1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 4.920000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1559d213-70a9-498e-bbeb-5d887a51ec42", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ed3a7ef0-b64c-4255-ab77-9fe108d074b0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 5.040000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "048b835c-eccf-493f-a729-b62c99129006", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4977c1d7-24a7-43a3-b7e8-c34e50a26a07", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0509d5d8-52af-40e5-9d52-7a1446a51a12", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3adbbb85-7c52-4a09-bf1a-ad2dd678670b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 5.460000000000008, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "63a6b090-813a-48dd-a573-92c70552dbe3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2dee08be-0539-4b49-83a7-b037b7ae840f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 5.579999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + }, + { + "word": "가", + "start": 85.68, + "end": 85.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "413adb71-70f3-45d7-a384-6ac9255bb977", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "061bf804-ea5e-470c-bfcb-379fad0a2ed8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 5.700000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가 계", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + }, + { + "word": "가", + "start": 85.68, + "end": 85.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 계", + "start": 85.8, + "end": 85.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 계", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1b9bb3ff-d74a-46b4-a4aa-a188a09cd9e9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2f37156f-e9ae-4e0f-b88c-f3289e513391", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 5.820000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가 계속", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + }, + { + "word": "가", + "start": 85.68, + "end": 85.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 계", + "start": 85.8, + "end": 85.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 계", + "language": null + }, + { + "word": "속", + "start": 85.92, + "end": 85.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "속", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "17219a7d-53bb-43d8-9503-0722a48395e8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4884f95b-95b8-4a72-8598-e5ce8abd89cf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 6.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가 계속 나", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + }, + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + }, + { + "word": "가", + "start": 85.68, + "end": 85.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 계", + "start": 85.8, + "end": 85.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 계", + "language": null + }, + { + "word": "속", + "start": 85.92, + "end": 85.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "속", + "language": null + }, + { + "word": " 나", + "start": 86.1, + "end": 86.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6ea0ebb1-2b17-48bf-90e8-524f449fd221", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2f36eeb9-1b82-48ba-b5b3-95a78f325bb6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 80.16, + "duration": 1.740000000000009, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 학습이나 이런 문제", + "words": [ + { + "word": " 학", + "start": 80.16, + "end": 80.22, + "confidence": 0.97, + "speaker": 2, + "punctuated_word": " 학", + "language": null + }, + { + "word": "습", + "start": 80.34, + "end": 80.4, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "이나", + "start": 80.64, + "end": 80.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이나", + "language": null + }, + { + "word": " 이", + "start": 81.24, + "end": 81.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 이", + "language": null + }, + { + "word": "런", + "start": 81.36, + "end": 81.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 문", + "start": 81.6, + "end": 81.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "제", + "start": 81.84, + "end": 81.9, + "confidence": 0.991, + "speaker": 2, + "punctuated_word": "제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "dd0f1216-75d4-48a8-98ec-322c5e9ae01c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "44b972c6-a317-40d1-95b4-b01162da4729", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 82.2, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "를 풀면 항상 기준점 70점 아래 점수가 계속 나와", + "words": [ + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + }, + { + "word": "가", + "start": 85.68, + "end": 85.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 계", + "start": 85.8, + "end": 85.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 계", + "language": null + }, + { + "word": "속", + "start": 85.92, + "end": 85.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "속", + "language": null + }, + { + "word": " 나", + "start": 86.1, + "end": 86.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "와", + "start": 86.22, + "end": 86.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "와", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f0a152ed-128b-4232-b492-be4a0f64bf6a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d670557b-38eb-4fc3-a291-5f31cc24df80", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 82.2, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "를 풀면 항상 기준점 70점 아래 점수가 계속 나와요", + "words": [ + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + }, + { + "word": "가", + "start": 85.68, + "end": 85.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 계", + "start": 85.8, + "end": 85.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 계", + "language": null + }, + { + "word": "속", + "start": 85.92, + "end": 85.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "속", + "language": null + }, + { + "word": " 나", + "start": 86.1, + "end": 86.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "와", + "start": 86.22, + "end": 86.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "와", + "language": null + }, + { + "word": "요", + "start": 86.34, + "end": 86.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "95d869b8-ad6a-462f-b511-7e4fd50a9b97", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d1297d01-dfbe-4a2e-9121-7997952f8295", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 82.2, + "duration": 4.3799999999999955, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "를 풀면 항상 기준점 70점 아래 점수가 계속 나와요.", + "words": [ + { + "word": "를", + "start": 82.2, + "end": 82.26, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "풀", + "start": 82.38, + "end": 82.44, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": "풀", + "language": null + }, + { + "word": "면", + "start": 82.56, + "end": 82.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "면", + "language": null + }, + { + "word": " 항", + "start": 82.8, + "end": 82.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 항", + "language": null + }, + { + "word": "상", + "start": 82.98, + "end": 83.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "상", + "language": null + }, + { + "word": " 기", + "start": 83.34, + "end": 83.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "준", + "start": 83.46, + "end": 83.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "준", + "language": null + }, + { + "word": "점", + "start": 83.76, + "end": 83.82, + "confidence": 0.852, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 7", + "start": 84.3, + "end": 84.36, + "confidence": 0.975, + "speaker": 2, + "punctuated_word": " 7", + "language": null + }, + { + "word": "0", + "start": 84.48, + "end": 84.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "0", + "language": null + }, + { + "word": "점", + "start": 84.72, + "end": 84.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "점", + "language": null + }, + { + "word": " 아", + "start": 85.02, + "end": 85.08, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 아", + "language": null + }, + { + "word": "래", + "start": 85.14, + "end": 85.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "래", + "language": null + }, + { + "word": " 점", + "start": 85.32, + "end": 85.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 점", + "language": null + }, + { + "word": "수", + "start": 85.56, + "end": 85.62, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "수", + "language": null + }, + { + "word": "가", + "start": 85.68, + "end": 85.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 계", + "start": 85.8, + "end": 85.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 계", + "language": null + }, + { + "word": "속", + "start": 85.92, + "end": 85.98, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "속", + "language": null + }, + { + "word": " 나", + "start": 86.1, + "end": 86.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 나", + "language": null + }, + { + "word": "와", + "start": 86.22, + "end": 86.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "와", + "language": null + }, + { + "word": "요", + "start": 86.34, + "end": 86.4, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 86.52, + "end": 86.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4ae55f4c-0470-42d6-adc8-661b1e90efe8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7c4f8b95-2df7-4d63-8cdf-8f25506d5605", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "93d5919b-42ac-45f3-ac1c-a82317813f73", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "74d628eb-937f-476d-b641-7d4898fc038b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 0.18000000000000682, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네,", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "667b3e8a-a01a-4164-81ce-3cd0273913a2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d2d0cb41-8007-4e47-ab22-78408c848b55", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 0.35999999999999943, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7ae59643-d8a4-46f8-9b53-62ad89c1c349", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d6092e19-f39d-4b09-9d4d-081ce887fe75", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 0.480000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2b35d9f0-862e-425f-a984-d02a73097420", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "88fb787f-4982-4d70-b178-9d1e99041997", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 0.6000000000000085, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "082a3546-5e7b-41f3-ae6c-e1c8861e08fe", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9144fc73-a2de-46ae-9182-931d4fb1f893", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 0.7199999999999989, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다.", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "243ea6e2-aed0-4a50-b58d-1b830ec48e92", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "dc11b8a8-a952-41b6-8037-ba6dfa87d7d0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 1.0200000000000102, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "405252d1-893c-4959-aa54-cad084ca2d93", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6826c952-6407-4594-80ce-62427384cb03", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 1.2000000000000028, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "04383e01-8a8c-4ee4-9dc7-1765b10fadae", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "83c2c82b-249f-4e0b-bd6c-087bc194e0ac", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 1.3800000000000097, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "38f60579-d29f-47e9-bf0d-8eadd239fe40", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "33c62875-45fa-4658-ad5c-45ae4b0edaf8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 1.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "be0a6b3c-5b04-4259-a303-fc301cd17abf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6004d6ea-0bcb-42e9-bb4e-e6f48cae7ec1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 1.8000000000000114, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "52d243ef-a27f-4f65-930a-e892e22e805f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ef99295b-61c6-4fb4-bacf-739a317abfa5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 2.1000000000000085, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d9563a53-a36c-470f-b036-5a582bfcb285", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "41c138d6-0303-4bb8-b3d8-9b5ed5c2922a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 2.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f283b575-ce07-430e-9569-99b0030a716b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "32c383b4-1b9e-444f-bf6a-1f6a5b079cb8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 2.460000000000008, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fdca8bd9-df56-4345-8faf-d1dc8f3d00e4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fdea816f-e259-41bd-bbcb-67968d9e7199", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 2.8200000000000074, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "63ef22c9-e2f5-41fe-bc22-50f9657ca54b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "55f4b6a3-6f72-4d7f-bdd0-6cafdadde37b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 2.940000000000012, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8d10bb73-e87f-4573-abe8-df31ff74f6e1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "851ff782-f733-48a7-8e57-b4a98575cab9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 3.1200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9f592d2b-fdfd-4164-90a8-700aea42dbd2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "941a2aa9-350d-4b5d-a9fa-9333922a294d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 3.240000000000009, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 ", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5b9fcc6a-2c3e-4af1-a528-65f33e7f78da", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b4b236ea-97d2-46b9-b763-ff34c25ded3d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 3.3599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f018bc0d-ec18-442e-a39b-8d78618cc402", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6b0a37ba-ed7f-48f5-b8c9-64b75e3f31df", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 3.6000000000000085, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9b5d27d3-4fca-4246-9d30-71bfbcace2e1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "cc652758-e6e4-4095-aca2-4e6f5600ec05", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a63f9f36-df19-4cfe-b84a-0dc65fb474bb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "54ef610b-9fbd-402a-9206-e52613d9f391", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 3.8400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "78ba05b9-3ccd-45ef-aefa-65474f9b3959", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b6217c77-fb9f-4d85-b906-422837df5b03", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 3.9000000000000057, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a8c4ccd7-8f88-4e29-b4b6-991edcf2f5b3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0f33cb7c-44bb-4cc6-9468-874683cb8994", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1b425942-5e50-41ad-b41e-2343a848e8a8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "36068435-953d-4e72-926f-7e1ef8baa22b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 4.320000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e25f6210-01f2-48d1-8176-90f28fe2e088", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "06dc7dde-3203-4701-9abf-fc1bc81e17a5", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 4.6200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2eae7ea0-003d-4e1e-88e9-27eceab835f3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bb75e0b0-baec-4248-907e-fdc7a9e4b0a4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 5.1000000000000085, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "154fad31-794b-4e34-9ed4-915a4a3e810c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "724841fe-c10c-489c-9145-39ffa173ef23", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5ccbc6c6-907c-4a39-b2c7-19de3060f075", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f6f21c15-3fba-4119-b3de-1ae1d459f693", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 5.400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e1fd52af-0139-4621-87dc-5cdd082eeb74", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2132b902-6cc3-43bf-bd36-890333d04cc6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 87.24, + "duration": 1.3800000000000097, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 네, 알겠습니다. 그러면 제", + "words": [ + { + "word": " 네", + "start": 87.24, + "end": 87.3, + "confidence": 0.967, + "speaker": 1, + "punctuated_word": " 네", + "language": null + }, + { + "word": ",", + "start": 87.36, + "end": 87.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": ",", + "language": null + }, + { + "word": " 알", + "start": 87.48, + "end": 87.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 알", + "language": null + }, + { + "word": "겠", + "start": 87.54, + "end": 87.6, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 87.66, + "end": 87.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 87.78, + "end": 87.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 87.9, + "end": 87.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + }, + { + "word": " 그러", + "start": 88.2, + "end": 88.26, + "confidence": 0.988, + "speaker": 1, + "punctuated_word": " 그러", + "language": null + }, + { + "word": "면", + "start": 88.38, + "end": 88.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "면", + "language": null + }, + { + "word": " 제", + "start": 88.56, + "end": 88.62, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "67dd3243-c99d-47ec-b78e-93e991be8174", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d094e63d-9d84-4552-bf95-0b5262f7870a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 3.9599999999999937, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8ff771ce-68d5-4648-80a1-b90972d1fc3b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fbc1130d-5d65-47c2-a96c-f8fd47c534ae", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 4.139999999999986, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 92.76, + "end": 92.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cefe5206-1998-4d22-8ee8-e82dbb5c6a03", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d9781736-b3c9-4786-ba04-7396e5ab1218", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 4.259999999999991, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 92.76, + "end": 92.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 92.88, + "end": 92.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "df6acea2-573c-4f44-b330-5ed2fea1686e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "73d34ddd-f2d1-455c-aca6-ca75f62d5346", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 4.3799999999999955, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 92.76, + "end": 92.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 92.88, + "end": 92.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 93.0, + "end": 93.06, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "드", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1e3a2ce4-0472-4a9c-8ddd-58df4054627e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "02703bd7-28ff-409e-8985-b517e1295660", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 4.559999999999988, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 92.76, + "end": 92.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 92.88, + "end": 92.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 93.0, + "end": 93.06, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 93.12, + "end": 93.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + }, + { + "word": "겠", + "start": 93.18, + "end": 93.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3d548ab4-b8b6-4971-924e-5b56d72ddb1a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "084de65b-1206-445c-b1b2-9b7644600083", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 4.679999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠습", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 92.76, + "end": 92.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 92.88, + "end": 92.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 93.0, + "end": 93.06, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 93.12, + "end": 93.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + }, + { + "word": "겠", + "start": 93.18, + "end": 93.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 93.3, + "end": 93.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b30907fd-d097-48c4-bf4f-1b2475d7f2e2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "12c4972c-08c8-4749-99db-e4416515aa7e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 4.739999999999995, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠습니", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 92.76, + "end": 92.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 92.88, + "end": 92.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 93.0, + "end": 93.06, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 93.12, + "end": 93.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + }, + { + "word": "겠", + "start": 93.18, + "end": 93.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 93.3, + "end": 93.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 93.36, + "end": 93.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "feb1f1bd-24da-46e5-a988-c11f70c29c44", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fe3ffe60-c695-4373-9d44-5943c08477f0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 88.68, + "duration": 4.859999999999999, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠습니다.", + "words": [ + { + "word": "가", + "start": 88.68, + "end": 88.74, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 다른", + "start": 88.98, + "end": 89.04, + "confidence": 0.997, + "speaker": 1, + "punctuated_word": " 다른", + "language": null + }, + { + "word": " 수", + "start": 89.28, + "end": 89.34, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": "준", + "start": 89.4, + "end": 89.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "준", + "language": null + }, + { + "word": "으로", + "start": 89.64, + "end": 89.7, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "으로", + "language": null + }, + { + "word": " 강", + "start": 90.0, + "end": 90.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 강", + "language": null + }, + { + "word": "의", + "start": 90.12, + "end": 90.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "의", + "language": null + }, + { + "word": "를", + "start": 90.3, + "end": 90.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "를", + "language": null + }, + { + "word": "들을", + "start": 90.54, + "end": 90.6, + "confidence": 0.995, + "speaker": 1, + "punctuated_word": "들을", + "language": null + }, + { + "word": " 수", + "start": 90.78, + "end": 90.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 90.9, + "end": 90.96, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 있", + "language": null + }, + { + "word": "도", + "start": 91.02, + "end": 91.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "도", + "language": null + }, + { + "word": "록", + "start": 91.08, + "end": 91.14, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "록", + "language": null + }, + { + "word": " 제", + "start": 91.38, + "end": 91.44, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 제", + "language": null + }, + { + "word": "가", + "start": 91.5, + "end": 91.56, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "가", + "language": null + }, + { + "word": " 변경", + "start": 91.8, + "end": 91.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 변경", + "language": null + }, + { + "word": " 신", + "start": 92.28, + "end": 92.34, + "confidence": 0.966, + "speaker": 1, + "punctuated_word": " 신", + "language": null + }, + { + "word": "청", + "start": 92.4, + "end": 92.46, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "청", + "language": null + }, + { + "word": "을", + "start": 92.58, + "end": 92.64, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 도", + "start": 92.76, + "end": 92.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 도", + "language": null + }, + { + "word": "와", + "start": 92.88, + "end": 92.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "와", + "language": null + }, + { + "word": "드", + "start": 93.0, + "end": 93.06, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 93.12, + "end": 93.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + }, + { + "word": "겠", + "start": 93.18, + "end": 93.24, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 93.3, + "end": 93.36, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 93.36, + "end": 93.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 93.48, + "end": 93.54, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7a5ac63c-03e8-4a76-94f4-2a1e623d9d33", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "54728d1c-ca86-453f-97cc-2a9c3358d139", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "84a0b143-8a28-4da5-880c-9e046cae5a85", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "95698300-2ff5-4682-a76e-842f50fabf40", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 0.23999999999999488, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "736d9cc0-e81f-42fa-b848-6e91128a544d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2e62f381-05c6-42a6-ada1-b6cf6da3bb98", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 0.5999999999999943, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7c0ebe39-ad5e-404b-80aa-4b60653c4580", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "ac653e32-6250-4fc3-9588-a814e257ddc8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 0.7199999999999989, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "72690406-b99d-449f-b4b5-ad93d179cebc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "32ae2245-2169-423e-81b4-a305680725c0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 0.8400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "61e4cc71-1c7c-4c1f-b540-3a404234e7e1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "63fa368b-13ce-432a-849c-310cb7050475", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 0.9599999999999937, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "96d3215b-df85-40ed-a362-15226105e8af", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8fd34048-8930-4731-892c-1c66c005b635", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 1.1400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "2c61a402-1459-4a76-9120-c6d8eff81e03", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4083165c-8e86-4a23-b918-1b99a2f55abf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 1.4399999999999977, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "61bbcc9f-3929-4d2a-8b03-40c5ae705197", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b5b88ec3-cbf8-4b5b-96ca-e65635507cce", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 1.5600000000000023, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 ", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b3e00d40-c196-4767-9434-e20cf325c449", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "350f2c88-1a5b-4098-b9ad-5662bcc5bc21", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 1.6799999999999926, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e1d003bb-03f5-4b8e-a89d-311c2cdda814", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7dff39b4-07ba-4cef-be6b-c237f4ced3d0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 1.7999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6e388307-72ef-4cab-aa7c-f4240b3645a7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "92770b23-5aaa-4030-bad6-9d07cb83090c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 1.9200000000000017, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9da1ab32-a8dc-4d6d-bb23-b917b9ff7c54", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "614dc260-4c33-46c7-bc88-6c8c92c0e7d4", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 2.0400000000000063, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설명", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + }, + { + "word": "명", + "start": 96.12, + "end": 96.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "명", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "43b4e737-640d-4ae0-9093-dbb8c18bed23", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "085d4e92-b961-4cf9-9f31-44eda703674b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 2.3400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + }, + { + "word": "명", + "start": 96.12, + "end": 96.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "명", + "language": null + }, + { + "word": " 부", + "start": 96.36, + "end": 96.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "탁", + "start": 96.42, + "end": 96.48, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "탁", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "15178464-afaf-49ff-803c-5534ce8bf60c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b05b634a-fede-4f10-9e3c-7206ed0594b7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 2.5799999999999983, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + }, + { + "word": "명", + "start": 96.12, + "end": 96.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "명", + "language": null + }, + { + "word": " 부", + "start": 96.36, + "end": 96.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "탁", + "start": 96.42, + "end": 96.48, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "탁", + "language": null + }, + { + "word": "드", + "start": 96.66, + "end": 96.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "드", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ec2ddf27-90bb-426f-a536-9ffc03c635ad", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "25135243-7bef-48e5-82bd-f2aebf8c9620", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 2.700000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + }, + { + "word": "명", + "start": 96.12, + "end": 96.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "명", + "language": null + }, + { + "word": " 부", + "start": 96.36, + "end": 96.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "탁", + "start": 96.42, + "end": 96.48, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "탁", + "language": null + }, + { + "word": "드", + "start": 96.66, + "end": 96.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 96.78, + "end": 96.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5d10c045-7e26-4bfe-8864-d4d5985c2e95", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7cfeb5b6-0ba9-4608-9b1d-2a6141fb6c1f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 2.760000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리겠", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + }, + { + "word": "명", + "start": 96.12, + "end": 96.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "명", + "language": null + }, + { + "word": " 부", + "start": 96.36, + "end": 96.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "탁", + "start": 96.42, + "end": 96.48, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "탁", + "language": null + }, + { + "word": "드", + "start": 96.66, + "end": 96.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 96.78, + "end": 96.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + }, + { + "word": "겠", + "start": 96.84, + "end": 96.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "075ddd9c-d61a-425e-b3e9-6a571b2aa4c6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f780d462-4344-4aad-8bfb-4bc990c2b41a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 2.9399999999999977, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리겠습니", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + }, + { + "word": "명", + "start": 96.12, + "end": 96.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "명", + "language": null + }, + { + "word": " 부", + "start": 96.36, + "end": 96.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "탁", + "start": 96.42, + "end": 96.48, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "탁", + "language": null + }, + { + "word": "드", + "start": 96.66, + "end": 96.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 96.78, + "end": 96.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + }, + { + "word": "겠", + "start": 96.84, + "end": 96.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 96.96, + "end": 97.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 97.02, + "end": 97.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f504aac7-fe49-4731-9468-8b2dbb5f2386", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "84d3090e-ed4f-4e2d-9742-0d7d6cc76542", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 94.14, + "duration": 3.0600000000000023, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리겠습니다.", + "words": [ + { + "word": " 어", + "start": 94.14, + "end": 94.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 어", + "language": null + }, + { + "word": "떤", + "start": 94.32, + "end": 94.38, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "떤", + "language": null + }, + { + "word": " 유", + "start": 94.68, + "end": 94.74, + "confidence": 0.99, + "speaker": 1, + "punctuated_word": " 유", + "language": null + }, + { + "word": "형", + "start": 94.8, + "end": 94.86, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "형", + "language": null + }, + { + "word": "을", + "start": 94.92, + "end": 94.98, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "을", + "language": null + }, + { + "word": " 원", + "start": 95.04, + "end": 95.1, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 원", + "language": null + }, + { + "word": "하는", + "start": 95.22, + "end": 95.28, + "confidence": 0.987, + "speaker": 1, + "punctuated_word": "하는", + "language": null + }, + { + "word": "지", + "start": 95.52, + "end": 95.58, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "지", + "language": null + }, + { + "word": "잠", + "start": 95.76, + "end": 95.82, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "잠", + "language": null + }, + { + "word": "시", + "start": 95.88, + "end": 95.94, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "시", + "language": null + }, + { + "word": " 설", + "start": 96.0, + "end": 96.06, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 설", + "language": null + }, + { + "word": "명", + "start": 96.12, + "end": 96.18, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "명", + "language": null + }, + { + "word": " 부", + "start": 96.36, + "end": 96.42, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": " 부", + "language": null + }, + { + "word": "탁", + "start": 96.42, + "end": 96.48, + "confidence": 0.999, + "speaker": 1, + "punctuated_word": "탁", + "language": null + }, + { + "word": "드", + "start": 96.66, + "end": 96.72, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "드", + "language": null + }, + { + "word": "리", + "start": 96.78, + "end": 96.84, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "리", + "language": null + }, + { + "word": "겠", + "start": 96.84, + "end": 96.9, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "겠", + "language": null + }, + { + "word": "습", + "start": 96.96, + "end": 97.02, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "습", + "language": null + }, + { + "word": "니", + "start": 97.02, + "end": 97.08, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "니", + "language": null + }, + { + "word": "다.", + "start": 97.14, + "end": 97.2, + "confidence": 1.0, + "speaker": 1, + "punctuated_word": "다.", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6d0b9584-2cb0-4e26-9a0c-450cfe48a182", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e2d04060-47a9-4307-a0d0-52ee687afab6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "4bc3e66d-be97-4bf4-b94c-57b6a4a7f236", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2e512463-7c2f-49bb-b0b1-0652e356d024", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 0.18000000000000682, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "e5e886a8-9c6e-4e3b-923c-cb8947276629", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6d178093-a454-453e-88f1-364ad5627b35", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 0.4200000000000017, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c3f8eef8-c514-495b-b6a6-96a0af3407c4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "256ae415-f4aa-4e32-9207-71789769ce9c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 0.5400000000000063, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7de12b52-af64-4ba8-b9ed-61018a3ee387", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "513939eb-acfc-4460-9154-d833447d2ffd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 1.0799999999999983, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "866e0a06-d6d9-4785-ad3b-fc9ab1466c5f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5d289087-71a6-4c2f-9026-0e9cc78c24c9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 1.2600000000000051, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "86df026b-1c18-4421-b424-4c0f62504472", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0ebf263d-c2d5-49ed-af4e-7c0db546ed5a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 1.3799999999999955, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 ", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "8d95870c-05ce-4fd0-b062-d3bca270b1d4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e9021cb4-a27c-4310-8452-9a237c62d29a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 1.4399999999999977, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cce326bd-2007-415a-a002-a559fbbaff61", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d9dc4c63-734d-4fd1-bd14-24ec0f01c9ae", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 1.5600000000000023, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "14e33393-dd81-4f10-af1c-fa4d11b3b0b3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b8479b0b-a439-4bda-9710-a7bc7ada9173", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 1.7999999999999972, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cbb3990d-a6f9-44dd-9f2b-0af141fca1be", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "79b2d978-9185-4fd8-b19b-89bd76a01fab", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 2.1599999999999966, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d59022ce-e583-4161-b6a2-12e272313d67", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e4c946e7-c56d-48d0-b928-9ec1ff9ebceb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 2.3400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f363f7db-7b9e-40bf-9ecc-6ae784840744", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f466607a-950d-4b39-81b5-83ce1795335b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 2.5799999999999983, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "cbf76221-e77b-4b99-a2fd-293f1c38351f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bb1cc741-f516-4070-9dcb-a44cc47fdf55", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 2.700000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "946e1af7-1c69-4f29-8766-ecc0bcee820c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "09011db4-c214-4602-a03e-b93150faac0a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 3.0, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c07f482a-e10a-4ec1-8e1c-1438992d4c2f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "83114ab2-724b-4849-9baa-ac6a54bbd053", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 3.180000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "29db270f-e66f-48b5-ae20-c29980873c36", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b4e4b850-2648-4e44-990c-7ebe0ce26b6b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 3.3599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "55941616-ee2e-4193-90fd-b823b29780af", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8f0e12f3-3234-4b6e-9bcf-91b6c5529892", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 3.9000000000000057, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "19c8f2be-3326-4a03-9807-705420359aa6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d65417bf-98f9-4f46-a8f0-19af28fcca95", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1a37049c-d548-4761-b96a-f86e09dfb9ff", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "779436e5-cc09-4e5c-907c-f0f861dcfddd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 4.3799999999999955, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "80ddf418-7d0e-44ea-99ea-d902c3010e64", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5ad00a99-8702-44dc-9d55-87ac00c7f83a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 4.439999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 ", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a9a42800-417c-4b79-9e95-2b45f3950bef", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a23ba8f4-0b69-44b8-b555-84fd39680c45", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 4.560000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "071b4d1b-c87d-4663-adc5-239637673721", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b682674d-e8ed-4557-85ba-6f04981bdadf", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 4.680000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1f75ff73-1b67-4b78-9265-37e9d205d66a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "25187450-dfad-4787-92eb-3334f9a36eff", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 4.859999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게 할", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b5c7c7a6-c4ef-4349-8cc5-a6af4338cc54", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "406c5ac2-f294-4383-ad37-a783c987174c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 4.980000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게 할 수", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "58e76e56-601f-4d24-852c-7ee9191b8de3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c7fd2acf-628f-4cd7-bc5d-e0b9f60d25d3", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 5.219999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게 할 수 있", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a5dacaa8-1094-49f0-b641-e4b7f774b759", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e4c7ee93-ceb3-4397-b2c7-ff38d73c823a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 97.86, + "duration": 1.3799999999999955, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 저는 일단 독해 ", + "words": [ + { + "word": " 저", + "start": 97.86, + "end": 97.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 저", + "language": null + }, + { + "word": "는", + "start": 97.98, + "end": 98.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 일", + "start": 98.22, + "end": 98.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 일", + "language": null + }, + { + "word": "단", + "start": 98.34, + "end": 98.4, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "단", + "language": null + }, + { + "word": " 독", + "start": 98.88, + "end": 98.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 99.06, + "end": 99.12, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3b66c385-9b69-439c-bc7c-7fcae5b8a6e8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4f4ec51f-ecb1-4d8f-b8b4-9047d2e45992", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 4.02000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고,", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "49607b54-a5b8-4663-8571-853ddd6c32ea", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "7a024b94-b9f0-4985-b9c2-837b24213486", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 4.800000000000011, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d4fa6c40-e6dc-49e8-b873-d4097b0c8aaf", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "50c930af-ad08-4c43-a7c5-57d9c5ecaa11", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 4.920000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c5fdaddb-95f3-4a83-84e3-32462e9590b4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3bcc3522-2ebc-41bc-8f64-dcb45ef2bc5f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 5.160000000000011, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d374da50-c614-4cf7-9c78-6966a385ea8a", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "009b9655-4633-49a5-820b-a3e34761addd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 5.340000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fb1e6cb3-2568-4115-a557-bb3115a70d88", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "991e6fa7-8f53-4811-99f8-781f0d4d72ed", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 5.460000000000008, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고 생", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "053a1da9-b4ca-4504-a5bd-09bd5680fbe8", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9a15b8ae-2cf1-4a48-81fa-38b4575a24f1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 5.640000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고 생각", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f418fb64-2c52-477e-8e1b-8fe0804646d1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "56eb9413-c6a4-4bd4-b1d7-d828dab9a804", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 5.88000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고 생각 없", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + }, + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "77fdf65d-a2c7-45b1-8946-39dd645374e7", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1207bc08-aae4-4179-9395-be16d64b6759", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 99.24, + "duration": 1.980000000000004, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "능력은 거의 부족하니까", + "words": [ + { + "word": "능", + "start": 99.24, + "end": 99.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "능", + "language": null + }, + { + "word": "력", + "start": 99.36, + "end": 99.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "력", + "language": null + }, + { + "word": "은", + "start": 99.6, + "end": 99.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "은", + "language": null + }, + { + "word": " 거", + "start": 99.96, + "end": 100.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 거", + "language": null + }, + { + "word": "의", + "start": 100.14, + "end": 100.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "의", + "language": null + }, + { + "word": " 부", + "start": 100.38, + "end": 100.44, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "족", + "start": 100.5, + "end": 100.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "족", + "language": null + }, + { + "word": "하", + "start": 100.8, + "end": 100.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "하", + "language": null + }, + { + "word": "니", + "start": 100.98, + "end": 101.04, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "니", + "language": null + }, + { + "word": "까", + "start": 101.16, + "end": 101.22, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "까", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "472a7c9a-dfbd-4314-91f4-f0bff1f30aa5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "55d93acd-6fbf-4df6-a21e-695890960dda", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 3.5999999999999943, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "07e1145a-1cd1-464e-b051-3c05b1cb3d1c", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b218460a-16c0-4943-9f04-0bf042b08e61", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 3.780000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 ", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "86ed9f0d-8f3d-4630-9b27-2b234272bded", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "882dccf4-b8cd-4ce0-a01b-f34093199ed7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 3.8999999999999915, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fd9add0e-5ff0-4ab3-9c8e-20848479aba5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "74ef06bd-f0a2-4925-a4af-6e5c84017c2b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 4.079999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b642a7e9-7e3b-4735-9307-09de3dda8a60", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "071e7e33-9373-4a93-b6c8-1fee255887f7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 4.259999999999991, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9a9284d7-f2df-4d21-aae3-2679a5b6bfa1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fd009c0e-a03b-4550-a75e-aa6e268f2e45", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 4.439999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "fb483537-4803-48e1-8ea0-98dee9e5b6a6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "da241884-c442-431a-91bd-ab3ffd1281e1", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 4.679999999999993, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "10c57dc6-9b91-43c4-9edd-9cf2d35c626f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c9c7e0da-7bd2-4a85-a1b1-bf0dd7893724", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 4.859999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "73bb3852-4585-4f98-9a2a-ceb9f78a4f7b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a2d62be5-00e6-4702-a0e8-cf5d034bcca2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 5.099999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "207a97d7-99b6-451b-aad7-96871a9c80b3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "fb166941-30d9-443e-aab1-d12f16051cb2", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 5.280000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교재", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d5904d18-1509-424a-96d3-201113e94995", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e17a224d-41ed-478c-9550-63d35d97e98f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 5.3999999999999915, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교재가", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": "가", + "start": 107.04, + "end": 107.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9ef4b522-d44d-4f7e-a364-00e62985fb89", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "2905eb64-caea-4179-99b5-7b6ecc884641", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 5.579999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + }, + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": "가", + "start": 107.04, + "end": 107.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 필", + "start": 107.22, + "end": 107.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 필", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5dc07ea5-27c6-426d-a187-f4a6ce97f5fa", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "864b8152-c3aa-475e-be94-649d8e514e6f", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 101.7, + "duration": 1.5600000000000023, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 독해를 쉽게 할 수 있고,", + "words": [ + { + "word": " 독", + "start": 101.7, + "end": 101.76, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 독", + "language": null + }, + { + "word": "해", + "start": 101.94, + "end": 102.0, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "를", + "start": 102.18, + "end": 102.24, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": "쉽", + "start": 102.36, + "end": 102.42, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "쉽", + "language": null + }, + { + "word": "게", + "start": 102.48, + "end": 102.54, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "게", + "language": null + }, + { + "word": " 할", + "start": 102.66, + "end": 102.72, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 할", + "language": null + }, + { + "word": " 수", + "start": 102.78, + "end": 102.84, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있", + "start": 103.02, + "end": 103.08, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있", + "language": null + }, + { + "word": "고,", + "start": 103.2, + "end": 103.26, + "confidence": 0.94, + "speaker": 2, + "punctuated_word": "고,", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ed9f50db-6243-4b10-808b-256968de8028", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "bb0ee3a3-f834-4b2c-bf45-3934b37ad46a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 103.98, + "duration": 3.3599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요", + "words": [ + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": "가", + "start": 107.04, + "end": 107.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 필", + "start": 107.22, + "end": 107.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 필", + "language": null + }, + { + "word": "요", + "start": 107.28, + "end": 107.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "778cbe20-a3e8-4432-963b-a42d261194b1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "6f6fbcfc-f7fa-40f6-a74e-e2882b130bb9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 103.98, + "duration": 3.5999999999999943, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해", + "words": [ + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": "가", + "start": 107.04, + "end": 107.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 필", + "start": 107.22, + "end": 107.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 필", + "language": null + }, + { + "word": "요", + "start": 107.28, + "end": 107.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": "해", + "start": 107.52, + "end": 107.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1b3344e3-9782-41b0-8a18-8e36bef35550", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8b5abc4b-501b-4aa3-a1bf-a3bacab7140e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 103.98, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해요", + "words": [ + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": "가", + "start": 107.04, + "end": 107.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 필", + "start": 107.22, + "end": 107.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 필", + "language": null + }, + { + "word": "요", + "start": 107.28, + "end": 107.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": "해", + "start": 107.52, + "end": 107.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "요", + "start": 107.64, + "end": 107.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "240b3926-0747-4288-ac39-9b1682a98a45", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "99c6a268-d12c-4bf3-bb0e-b0b36d61a5fd", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 103.98, + "duration": 3.8999999999999915, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해요.", + "words": [ + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": "가", + "start": 107.04, + "end": 107.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 필", + "start": 107.22, + "end": 107.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 필", + "language": null + }, + { + "word": "요", + "start": 107.28, + "end": 107.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": "해", + "start": 107.52, + "end": 107.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "요", + "start": 107.64, + "end": 107.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 107.82, + "end": 107.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7599e8fe-d300-4d11-8c41-5aec2b2fe1b3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "b2c094b0-4ac4-458f-9488-ec99d289336b", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 103.98, + "duration": 3.8999999999999915, + "is_final": true, + "speech_final": true, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해요.", + "words": [ + { + "word": " 부", + "start": 103.98, + "end": 104.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 부", + "language": null + }, + { + "word": "담", + "start": 104.1, + "end": 104.16, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "담", + "language": null + }, + { + "word": " 없", + "start": 104.34, + "end": 104.4, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "고", + "start": 104.52, + "end": 104.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "고", + "language": null + }, + { + "word": " 생", + "start": 104.64, + "end": 104.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 생", + "language": null + }, + { + "word": "각", + "start": 104.82, + "end": 104.88, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "각", + "language": null + }, + { + "word": " 없", + "start": 105.06, + "end": 105.12, + "confidence": 0.997, + "speaker": 2, + "punctuated_word": " 없", + "language": null + }, + { + "word": "이", + "start": 105.24, + "end": 105.3, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "이", + "language": null + }, + { + "word": "읽", + "start": 105.54, + "end": 105.6, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "읽", + "language": null + }, + { + "word": "을", + "start": 105.72, + "end": 105.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "을", + "language": null + }, + { + "word": " 수", + "start": 105.9, + "end": 105.96, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 106.08, + "end": 106.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 106.32, + "end": 106.38, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 106.5, + "end": 106.56, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 교", + "start": 106.74, + "end": 106.8, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 교", + "language": null + }, + { + "word": "재", + "start": 106.92, + "end": 106.98, + "confidence": 0.996, + "speaker": 2, + "punctuated_word": "재", + "language": null + }, + { + "word": "가", + "start": 107.04, + "end": 107.1, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "가", + "language": null + }, + { + "word": " 필", + "start": 107.22, + "end": 107.28, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 필", + "language": null + }, + { + "word": "요", + "start": 107.28, + "end": 107.34, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": "해", + "start": 107.52, + "end": 107.58, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "해", + "language": null + }, + { + "word": "요", + "start": 107.64, + "end": 107.7, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "요", + "language": null + }, + { + "word": ".", + "start": 107.82, + "end": 107.88, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": ".", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "75e1603a-3dab-4d64-a9b3-1f7e02651173", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "8ea3a569-ee40-49be-b77d-a246070ab819", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 0.060000000000002274, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a4fae164-b390-475f-8686-3f972c65e3ac", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4ee99e4c-1b37-41b2-83d9-a421ceaf66eb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 0.18000000000000682, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f0230b61-e758-4383-874b-053206de70cb", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1aba98f9-cf80-4e77-9f07-c65286af9420", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 0.5400000000000063, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d339d6b7-be8b-43ee-bc9f-3f57b1b06ca4", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e7a2e32b-95e3-4359-bdf7-5bd61672c62a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 1.0800000000000125, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d02a1de5-d507-44a8-9650-fc6c31fb178e", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "e42dbd07-9ba1-47e6-aa65-bff217fef50e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 1.2000000000000028, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "db35f864-3dd6-4c35-a175-ef67ca376223", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4395d54c-545d-4524-8898-4e80edd43d99", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 1.3200000000000074, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "f462b383-9053-4f08-af82-4f89036df4fc", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1dd48c1e-a76b-46c7-bab5-6e547426de4d", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 1.9200000000000017, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "433295cb-ff53-44a8-bfc4-16dbd3bc48f9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "734f10fa-22c0-47c7-89ff-c6591d8b4b82", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 2.160000000000011, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a5adf240-2f81-4141-a472-f12f4e82ac38", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "c4fd16dc-4e18-49d0-a437-166bcddf91d9", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 2.3400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "3e6c5adb-a2c4-43d5-879c-c8af95793a1d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4080a7b2-c5eb-44bc-a435-57ff5305bd96", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 2.5200000000000102, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "0da4bcc3-3ab8-414f-85d6-d9ef9b35a0b9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "3e2278fe-7dce-411c-b637-105d3ddebe36", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 3.180000000000007, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a152530f-f3c5-4941-b12d-2c3a8695d374", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "550c83e3-4489-4189-a3c4-ba358a2cd304", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 3.3599999999999994, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "796ab182-b5b8-40d9-877e-c0b19be8a31d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "0151287d-ed82-4afb-93b0-bbd78f2e7882", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 3.480000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "1d0a4225-8f81-4336-ac9d-f915eb24c935", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "96d96b95-17da-476f-a5d7-6cecb989f867", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 3.6000000000000085, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "43eea37d-6159-4bc6-9063-0c73143950c9", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9a22ef10-6270-400f-9924-78d83365f6ff", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 3.719999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a854a7a5-de3b-43e3-bfaa-da1631f4e73d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "46b53c9b-a2b9-46b7-ae11-720c6591f087", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 4.0800000000000125, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9f9adfcf-6603-4776-8386-1d685abe0b52", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "1fb60097-142c-43b1-b47f-7a6bfebb4260", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 4.260000000000005, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6a6286a1-9576-4ed6-8a8a-475808839779", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "467adf11-35ae-434b-bbd1-e2dcab8bff03", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 4.5, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런 강", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "a10cad78-9bc4-426f-8405-f740f1f96160", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "9dd52c83-a51a-47c8-b1b0-74c11acc0901", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 4.740000000000009, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런 강좌", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b142f98c-39c7-4295-95be-b01460a5f3e3", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "d6018d59-4c16-4fa8-9351-501d5f74c4fa", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 4.980000000000004, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런 강좌랑", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + }, + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "c9c3d8e3-35c7-452a-b4e1-9a0ba7610789", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "947ebc20-5340-403a-8096-0571ff12624c", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 108.6, + "duration": 1.3200000000000074, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 문법에서는 기초를", + "words": [ + { + "word": " 문", + "start": 108.6, + "end": 108.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 문", + "language": null + }, + { + "word": "법", + "start": 108.72, + "end": 108.78, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "법", + "language": null + }, + { + "word": "에서는", + "start": 109.08, + "end": 109.14, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "에서는", + "language": null + }, + { + "word": " 기", + "start": 109.62, + "end": 109.68, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 기", + "language": null + }, + { + "word": "초", + "start": 109.74, + "end": 109.8, + "confidence": 0.989, + "speaker": 2, + "punctuated_word": "초", + "language": null + }, + { + "word": "를", + "start": 109.86, + "end": 109.92, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "를", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "9d4b4999-e495-4dad-a3c4-245680a50b14", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "26e670d0-514d-45de-95de-5a37682e348e", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 3.1200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "bc27a43b-8ffc-4f80-ac75-5f0c9e19ae9b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "35f2dd27-f710-4cc9-a11b-98fd61e3a4e7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 3.720000000000013, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 ", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5ad1c794-1cf0-4da0-a429-ed9bdb9937f1", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "69f4fdee-94bd-4663-9494-f90c84161237", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 3.8400000000000034, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "7c23a9a8-603f-479d-97dc-3a14eb17111b", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "24fe3c7c-b95d-4a70-834b-a9900f32ede7", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 4.02000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "ca06f45e-9eea-4b2c-bb09-f97a26f49186", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "72ec57f9-6cd5-4139-8440-6d477584f664", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 4.200000000000003, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "166b5367-1ef6-40e0-ae27-5dccfafde3b2", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "5558ed34-cdef-4da1-bff1-f593a9fbe506", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 4.440000000000012, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "b346213e-ea81-4fed-a087-408767f5048f", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "87c68d67-7341-40ee-987a-a17ec31c2e83", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 4.560000000000002, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "90cc0a6b-7049-44d3-a2ba-fee581042798", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4877f4be-50b0-421a-b219-6720f9a9acf0", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 4.859999999999999, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금 현재", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 현재", + "start": 115.26, + "end": 115.32, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "d872fdd7-e173-4d04-842f-0b5536e10fc0", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "92e05d28-558d-4056-bb8f-3add5f2c3e21", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 5.280000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금 현재 레", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 현재", + "start": 115.26, + "end": 115.32, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 레", + "start": 115.68, + "end": 115.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "837b8247-a030-476b-a7a2-a2e87829e2a6", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f74177e0-f19c-4d53-b726-89974dae600a", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 5.400000000000006, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + }, + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 현재", + "start": 115.26, + "end": 115.32, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 레", + "start": 115.68, + "end": 115.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 115.8, + "end": 115.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "6327d575-8e3e-4fe0-9fc4-e2d440f50dc5", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "f149585d-4c9a-4789-8972-72845c20d0fb", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 110.46, + "duration": 1.5, + "is_final": true, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": " 다시 복습하고 다져", + "words": [ + { + "word": " 다시", + "start": 110.46, + "end": 110.52, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 다시", + "language": null + }, + { + "word": " 복", + "start": 110.7, + "end": 110.76, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 복", + "language": null + }, + { + "word": "습", + "start": 110.88, + "end": 110.94, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "습", + "language": null + }, + { + "word": "하고", + "start": 111.06, + "end": 111.12, + "confidence": 0.932, + "speaker": 2, + "punctuated_word": "하고", + "language": null + }, + { + "word": " 다", + "start": 111.72, + "end": 111.78, + "confidence": 0.993, + "speaker": 2, + "punctuated_word": " 다", + "language": null + }, + { + "word": "져", + "start": 111.9, + "end": 111.96, + "confidence": 0.459, + "speaker": 2, + "punctuated_word": "져", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "30381bb9-0d5d-4ffd-9150-c692b22ff933", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "a172b418-ccf4-4fd9-9e09-8f9232c81158", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 112.02, + "duration": 4.02000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보", + "words": [ + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 현재", + "start": 115.26, + "end": 115.32, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 레", + "start": 115.68, + "end": 115.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 115.8, + "end": 115.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "보", + "start": 115.98, + "end": 116.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "보", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "5875ccce-175d-4410-acca-e24eff561b4d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "749f670d-76ad-4b9c-a695-424d2a212ff8", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 112.02, + "duration": 4.140000000000001, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보다", + "words": [ + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 현재", + "start": 115.26, + "end": 115.32, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 레", + "start": 115.68, + "end": 115.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 115.8, + "end": 115.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "보", + "start": 115.98, + "end": 116.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "다", + "start": 116.1, + "end": 116.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "다", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "64a07e1d-9321-4652-9166-7a2787480975", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "26a0ce29-62fe-471b-a0bf-6f8c528d4816", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 112.02, + "duration": 4.439999999999998, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보다 더", + "words": [ + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 현재", + "start": 115.26, + "end": 115.32, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 레", + "start": 115.68, + "end": 115.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 115.8, + "end": 115.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "보", + "start": 115.98, + "end": 116.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "다", + "start": 116.1, + "end": 116.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 더", + "start": 116.4, + "end": 116.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 더", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "63ed5ba8-8ba7-4cdd-9923-e8574abbce9d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "22285695-fb6a-41aa-bbbf-090d611325d6", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + }, + { + "type": "Results", + "start": 112.02, + "duration": 4.6200000000000045, + "is_final": false, + "speech_final": false, + "from_finalize": false, + "channel": { + "alternatives": [ + { + "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보다 더 ", + "words": [ + { + "word": "볼", + "start": 112.02, + "end": 112.08, + "confidence": 0.96, + "speaker": 2, + "punctuated_word": "볼", + "language": null + }, + { + "word": " 수", + "start": 112.14, + "end": 112.2, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 수", + "language": null + }, + { + "word": " 있는", + "start": 112.26, + "end": 112.32, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 있는", + "language": null + }, + { + "word": " 그", + "start": 112.62, + "end": 112.68, + "confidence": 0.977, + "speaker": 2, + "punctuated_word": " 그", + "language": null + }, + { + "word": "런", + "start": 112.8, + "end": 112.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "런", + "language": null + }, + { + "word": " 강", + "start": 113.04, + "end": 113.1, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": " 강", + "language": null + }, + { + "word": "좌", + "start": 113.28, + "end": 113.34, + "confidence": 0.995, + "speaker": 2, + "punctuated_word": "좌", + "language": null + }, + { + "word": "랑", + "start": 113.52, + "end": 113.58, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "랑", + "language": null + }, + { + "word": "듣", + "start": 114.24, + "end": 114.3, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "듣", + "language": null + }, + { + "word": "기", + "start": 114.42, + "end": 114.48, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "기", + "language": null + }, + { + "word": "는", + "start": 114.6, + "end": 114.66, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "는", + "language": null + }, + { + "word": " 지", + "start": 114.84, + "end": 114.9, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 지", + "language": null + }, + { + "word": "금", + "start": 114.96, + "end": 115.02, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "금", + "language": null + }, + { + "word": " 현재", + "start": 115.26, + "end": 115.32, + "confidence": 0.998, + "speaker": 2, + "punctuated_word": " 현재", + "language": null + }, + { + "word": " 레", + "start": 115.68, + "end": 115.74, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 레", + "language": null + }, + { + "word": "벨", + "start": 115.8, + "end": 115.86, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": "벨", + "language": null + }, + { + "word": "보", + "start": 115.98, + "end": 116.04, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "보", + "language": null + }, + { + "word": "다", + "start": 116.1, + "end": 116.16, + "confidence": 0.999, + "speaker": 2, + "punctuated_word": "다", + "language": null + }, + { + "word": " 더", + "start": 116.4, + "end": 116.46, + "confidence": 1.0, + "speaker": 2, + "punctuated_word": " 더", + "language": null + } + ], + "confidence": 1.0, + "languages": [] + } + ] + }, + "metadata": { + "request_id": "54a1d1a1-f3e6-4fe8-b00c-818eee051c3d", + "model_info": { + "name": "", + "version": "", + "arch": "" + }, + "model_uuid": "4fd116af-3301-4e8c-bea6-ddcc46641048", + "extra": null + }, + "channel_index": [ + 0, + 1 + ] + } +] diff --git a/crates/transcript/src/accumulator/mod.rs b/crates/transcript/src/accumulator/mod.rs index 7d346ce32e..cddb407d4d 100644 --- a/crates/transcript/src/accumulator/mod.rs +++ b/crates/transcript/src/accumulator/mod.rs @@ -182,15 +182,6 @@ mod tests { words } - fn load_fixture(name: &str) -> Vec { - let raw = match name { - "deepgram_1" => include_str!("fixtures/deepgram_1.json"), - "soniox_1" => include_str!("fixtures/soniox_1.json"), - _ => panic!("unknown fixture: {name}"), - }; - serde_json::from_str(raw).expect("fixture must parse as StreamResponse[]") - } - fn assert_valid_output(words: &[TranscriptWord]) { assert!(!words.is_empty(), "must produce words"); @@ -420,13 +411,19 @@ mod tests { assert!(acc.process(&ignored).is_none()); } - #[test] - fn deepgram_fixture_produces_valid_output() { - assert_valid_output(&replay(&load_fixture("deepgram_1"))); + macro_rules! fixture_test { + ($test_name:ident, $file:literal) => { + #[test] + fn $test_name() { + let responses: Vec = + serde_json::from_str(include_str!(concat!("fixtures/", $file, ".json"))) + .expect("fixture must parse as StreamResponse[]"); + assert_valid_output(&replay(&responses)); + } + }; } - #[test] - fn soniox_fixture_produces_valid_output() { - assert_valid_output(&replay(&load_fixture("soniox_1"))); - } + fixture_test!(deepgram_fixture_produces_valid_output, "deepgram_1"); + fixture_test!(soniox_fixture_produces_valid_output, "soniox_1"); + fixture_test!(soniox_korean_fixture_produces_valid_output, "soniox_2"); } From f4298bac23712eb9225d02e9096d84d705cfea65 Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Thu, 19 Feb 2026 16:33:26 +0900 Subject: [PATCH 4/6] more tests and fixes --- crates/transcript/src/accumulator/mod.rs | 17 ++++ crates/transcript/src/accumulator/words.rs | 100 ++++++++++++++++----- 2 files changed, 97 insertions(+), 20 deletions(-) diff --git a/crates/transcript/src/accumulator/mod.rs b/crates/transcript/src/accumulator/mod.rs index cddb407d4d..678c817071 100644 --- a/crates/transcript/src/accumulator/mod.rs +++ b/crates/transcript/src/accumulator/mod.rs @@ -1,3 +1,20 @@ +//! # Transcript-as-Oracle Accumulator +//! +//! The transcript string in each ASR response is the **sole source of truth** +//! for word boundaries. Tokens are sub-word fragments with timing metadata; +//! the transcript tells us which fragments belong to the same word. +//! +//! ## Two-level design +//! +//! **Within a response** — `assemble` aligns tokens to the transcript via +//! `spacing_from_transcript`. A space in the transcript means "new word"; +//! no space means "same word." No timing heuristics. +//! +//! **Across responses** — `stitch` handles the one case where no transcript +//! spans both sides: when a provider splits a word across two final responses +//! (e.g. Korean particles like "시스템" + "을" → "시스템을"). This uses a +//! timing-based heuristic because no cross-response transcript exists. + mod channel; mod words; diff --git a/crates/transcript/src/accumulator/words.rs b/crates/transcript/src/accumulator/words.rs index 70580cf798..fdb0020fc3 100644 --- a/crates/transcript/src/accumulator/words.rs +++ b/crates/transcript/src/accumulator/words.rs @@ -19,9 +19,13 @@ pub struct TranscriptUpdate { // ── Assembly ───────────────────────────────────────────────────────────────── -/// Assemble raw ASR tokens into merged `TranscriptWord`s, recovering spacing -/// from the transcript string. Adjacent tokens without a space prefix and -/// within 120ms are merged (handles split punctuation/contractions). +/// Assemble raw ASR tokens into merged `TranscriptWord`s. +/// +/// The transcript string is the **sole oracle** for word boundaries within a +/// single response. `spacing_from_transcript` aligns each token to the +/// transcript; a space prefix means "new word", no space means "same word." +/// Adjacent tokens without a space prefix are unconditionally merged — +/// no timing heuristics. pub(super) fn assemble(raw: &[Word], transcript: &str, channel: i32) -> Vec { let spaced = spacing_from_transcript(raw, transcript); let mut result: Vec = Vec::new(); @@ -30,10 +34,7 @@ pub(super) fn assemble(raw: &[Word], transcript: &str, channel: i32) -> Vec Vec Vec { let mut result = Vec::with_capacity(raw.len()); let mut pos = 0; @@ -76,7 +83,13 @@ fn spacing_from_transcript(raw: &[Word], transcript: &str) -> Vec { result.push(format!("{}{trimmed}", &transcript[pos..abs])); pos = abs + trimmed.len(); } - None => result.push(text.to_string()), + None => { + let mut fallback = text.to_string(); + if !fallback.starts_with(' ') { + fallback.insert(0, ' '); + } + result.push(fallback); + } } } @@ -93,12 +106,12 @@ pub(super) fn dedup(words: Vec, watermark: i64) -> Vec, mut words: Vec, @@ -207,10 +220,17 @@ mod tests { } #[test] - fn spacing_falls_back_to_raw_when_not_found() { + fn spacing_forces_word_boundary_on_unfound_token() { let raw = vec![raw_word("Hello", 0.0, 0.5)]; let spaced = spacing_from_transcript(&raw, "completely different"); - assert_eq!(spaced, ["Hello"]); + assert_eq!(spaced, [" Hello"]); + } + + #[test] + fn spacing_preserves_no_space_at_transcript_start() { + let raw = vec![raw_word("기", 0.0, 0.1), raw_word("간", 0.2, 0.3)]; + let spaced = spacing_from_transcript(&raw, "기간"); + assert_eq!(spaced, ["기", "간"]); } // ── assemble ───────────────────────────────────────────────────────── @@ -225,17 +245,57 @@ mod tests { } #[test] - fn assemble_does_not_merge_distant_tokens() { - let raw = vec![raw_word(" Hello", 0.0, 0.5), raw_word("world", 1.0, 1.5)]; + fn assemble_does_not_merge_spaced_tokens() { + let raw = vec![raw_word(" Hello", 0.0, 0.5), raw_word(" world", 0.51, 1.0)]; let words = assemble(&raw, " Hello world", 0); assert_eq!(words.len(), 2); } #[test] - fn assemble_does_not_merge_spaced_tokens() { - let raw = vec![raw_word(" Hello", 0.0, 0.5), raw_word(" world", 0.51, 1.0)]; - let words = assemble(&raw, " Hello world", 0); + fn assemble_separates_unfound_tokens() { + let raw = vec![raw_word("Hello", 0.0, 0.5), raw_word("world", 0.51, 0.6)]; + let words = assemble(&raw, "completely different text", 0); assert_eq!(words.len(), 2); + assert!(words[0].text.starts_with(' ')); + assert!(words[1].text.starts_with(' ')); + } + + #[test] + fn assemble_merges_cjk_syllables_with_large_gap() { + // Korean "있는데" split into syllables with gaps well above 120 ms. + // The transcript confirms they form one word (no space between them). + let raw = vec![ + raw_word("있는", 0.0, 0.3), + raw_word("데", 0.54, 0.66), // 240 ms gap + raw_word(",", 0.84, 0.9), // punctuation attached + ]; + let words = assemble(&raw, " 있는데,", 0); + assert_eq!( + words.len(), + 1, + "syllables in same CJK word must merge: {words:?}" + ); + assert_eq!(words[0].text, " 있는데,"); + assert_eq!(words[0].end_ms, 900); + } + + #[test] + fn assemble_splits_cjk_words_at_transcript_space_boundary() { + // "있는데 학습과" – two Korean words separated by a space in the transcript. + let raw = vec![ + raw_word("있는", 0.0, 0.3), + raw_word("데", 0.54, 0.66), + raw_word("학습", 1.0, 1.3), + raw_word("과", 1.54, 1.66), + ]; + let words = assemble(&raw, " 있는데 학습과", 0); + assert_eq!( + words.len(), + 2, + "space in transcript must split words: {words:?}" + ); + assert_eq!(words[0].text, " 있는데"); + assert_eq!(words[1].text, " 학습과"); } // ── dedup ──────────────────────────────────────────────────────────── From 42a287fb765ab19dc8c7715c1180bc8a815d3299 Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Thu, 19 Feb 2026 17:31:27 +0900 Subject: [PATCH 5/6] various improvements --- apps/desktop/src/hooks/useStartListening.ts | 29 +- .../src/store/zustand/listener/batch.ts | 18 +- .../store/zustand/listener/general.test.ts | 4 +- .../src/store/zustand/listener/general.ts | 2 + .../store/zustand/listener/transcript.test.ts | 43 ++- .../src/store/zustand/listener/transcript.ts | 33 +- apps/web/src/routeTree.gen.ts | 10 + crates/transcript/src/accumulator/channel.rs | 40 +-- crates/transcript/src/accumulator/mod.rs | 81 ++++- crates/transcript/src/accumulator/words.rs | 126 +++++-- plugins/listener/js/bindings.gen.ts | 11 +- plugins/listener/src/actors/listener/mod.rs | 2 + plugins/listener/src/events.rs | 5 +- plugins/listener2/js/bindings.gen.ts | 313 +++++++++++------- plugins/listener2/src/batch.rs | 2 + plugins/listener2/src/events.rs | 3 +- 16 files changed, 483 insertions(+), 239 deletions(-) diff --git a/apps/desktop/src/hooks/useStartListening.ts b/apps/desktop/src/hooks/useStartListening.ts index ae064e6edd..db25e48fb9 100644 --- a/apps/desktop/src/hooks/useStartListening.ts +++ b/apps/desktop/src/hooks/useStartListening.ts @@ -1,7 +1,7 @@ import { useCallback } from "react"; import { commands as analyticsCommands } from "@hypr/plugin-analytics"; -import type { TranscriptWord } from "@hypr/plugin-listener"; +import type { SpeakerHint, TranscriptWord } from "@hypr/plugin-listener"; import { useConfigValue } from "../config/use-config"; import { useListener } from "../contexts/listener"; @@ -56,7 +56,10 @@ export function useStartListening(sessionId: string) { stt_model: conn.model, }); - const handlePersist: HandlePersistCallback = (words: TranscriptWord[]) => { + const handlePersist: HandlePersistCallback = ( + words: TranscriptWord[], + speakerHints: SpeakerHint[], + ) => { if (words.length === 0) { return; } @@ -73,18 +76,16 @@ export function useStartListening(sessionId: string) { channel: w.channel, })); - const newHints: SpeakerHintWithId[] = words - .filter((w) => w.speaker !== null) - .map((w) => ({ - id: id(), - word_id: w.id, - type: "provider_speaker_index", - value: JSON.stringify({ - provider: conn.provider, - channel: w.channel, - speaker_index: w.speaker, - }), - })); + const newHints: SpeakerHintWithId[] = speakerHints.map((h) => ({ + id: id(), + word_id: h.word_id, + type: "provider_speaker_index", + value: JSON.stringify({ + provider: conn.provider, + channel: words.find((w) => w.id === h.word_id)?.channel ?? 0, + speaker_index: h.speaker_index, + }), + })); updateTranscriptWords(store, transcriptId, [ ...existingWords, diff --git a/apps/desktop/src/store/zustand/listener/batch.ts b/apps/desktop/src/store/zustand/listener/batch.ts index b2f160f354..f8b363e995 100644 --- a/apps/desktop/src/store/zustand/listener/batch.ts +++ b/apps/desktop/src/store/zustand/listener/batch.ts @@ -1,7 +1,7 @@ import type { StoreApi } from "zustand"; import type { BatchResponse } from "@hypr/plugin-listener2"; -import type { TranscriptWord } from "@hypr/plugin-listener2"; +import type { SpeakerHint, TranscriptWord } from "@hypr/plugin-listener2"; import { ChannelProfile, @@ -36,6 +36,7 @@ export type BatchActions = { handleBatchResponseStreamed: ( sessionId: string, words: TranscriptWord[], + speakerHints: SpeakerHint[], percentage: number, ) => void; handleBatchFailed: (sessionId: string, error: string) => void; @@ -88,7 +89,7 @@ export const createBatchSlice = ( }); }, - handleBatchResponseStreamed: (sessionId, words, percentage) => { + handleBatchResponseStreamed: (sessionId, words, speakerHints, percentage) => { const persist = get().batchPersist[sessionId]; if (persist && words.length > 0) { @@ -99,15 +100,16 @@ export const createBatchSlice = ( channel: w.channel, })); - const hints: RuntimeSpeakerHint[] = words - .filter((w) => w.speaker !== null) - .map((w, i) => ({ - wordIndex: i, + const hints: RuntimeSpeakerHint[] = speakerHints.map((h) => { + const wordIndex = words.findIndex((w) => w.id === h.word_id); + return { + wordIndex: wordIndex >= 0 ? wordIndex : 0, data: { type: "provider_speaker_index" as const, - speaker_index: w.speaker!, + speaker_index: h.speaker_index, }, - })); + }; + }); persist(wordLikes, hints); } diff --git a/apps/desktop/src/store/zustand/listener/general.test.ts b/apps/desktop/src/store/zustand/listener/general.test.ts index 38a9c785c0..4e32567663 100644 --- a/apps/desktop/src/store/zustand/listener/general.test.ts +++ b/apps/desktop/src/store/zustand/listener/general.test.ts @@ -39,7 +39,7 @@ describe("General Listener Slice", () => { const sessionId = "session-456"; const { handleBatchResponseStreamed, getSessionMode } = store.getState(); - handleBatchResponseStreamed(sessionId, [], 0.5); + handleBatchResponseStreamed(sessionId, [], [], 0.5); expect(getSessionMode(sessionId)).toBe("running_batch"); }); }); @@ -50,7 +50,7 @@ describe("General Listener Slice", () => { const { handleBatchResponseStreamed, clearBatchSession } = store.getState(); - handleBatchResponseStreamed(sessionId, [], 0.5); + handleBatchResponseStreamed(sessionId, [], [], 0.5); expect(store.getState().batch[sessionId]).toEqual({ percentage: 0.5, isComplete: false, diff --git a/apps/desktop/src/store/zustand/listener/general.ts b/apps/desktop/src/store/zustand/listener/general.ts index 2ddad1aedf..04179f1dae 100644 --- a/apps/desktop/src/store/zustand/listener/general.ts +++ b/apps/desktop/src/store/zustand/listener/general.ts @@ -313,6 +313,7 @@ export const createGeneralSlice = < } else if (payload.type === "transcript_update") { get().handleTranscriptUpdate( payload.new_final_words, + payload.speaker_hints, payload.partial_words, ); } else if (payload.type === "mic_muted") { @@ -531,6 +532,7 @@ export const createGeneralSlice = < get().handleBatchResponseStreamed( sessionId, payload.words, + payload.speaker_hints, payload.percentage, ); diff --git a/apps/desktop/src/store/zustand/listener/transcript.test.ts b/apps/desktop/src/store/zustand/listener/transcript.test.ts index 76dd5e0638..232d5fb96d 100644 --- a/apps/desktop/src/store/zustand/listener/transcript.test.ts +++ b/apps/desktop/src/store/zustand/listener/transcript.test.ts @@ -1,7 +1,7 @@ import { describe, expect, test, vi } from "vitest"; import { createStore } from "zustand"; -import type { TranscriptWord } from "@hypr/plugin-listener"; +import type { PartialWord, TranscriptWord } from "@hypr/plugin-listener"; import { createTranscriptSlice, @@ -15,7 +15,7 @@ const createTranscriptStore = () => { ); }; -function makeWord( +function makeFinalWord( text: string, start_ms: number, end_ms: number, @@ -27,10 +27,18 @@ function makeWord( start_ms, end_ms, channel, - speaker: null, }; } +function makePartialWord( + text: string, + start_ms: number, + end_ms: number, + channel = 0, +): PartialWord { + return { text, start_ms, end_ms, channel }; +} + describe("transcript slice", () => { test("handles partial words update", () => { const store = createTranscriptStore(); @@ -39,7 +47,11 @@ describe("transcript slice", () => { .getState() .handleTranscriptUpdate( [], - [makeWord(" Hello", 100, 500), makeWord(" world", 550, 900)], + [], + [ + makePartialWord(" Hello", 100, 500), + makePartialWord(" world", 550, 900), + ], ); const state = store.getState(); @@ -52,12 +64,15 @@ describe("transcript slice", () => { const persist = vi.fn(); store.getState().setTranscriptPersist(persist); - const finals = [makeWord(" Hello", 100, 500), makeWord(" world", 550, 900)]; + const finals = [ + makeFinalWord(" Hello", 100, 500), + makeFinalWord(" world", 550, 900), + ]; - store.getState().handleTranscriptUpdate(finals, []); + store.getState().handleTranscriptUpdate(finals, [], []); expect(persist).toHaveBeenCalledTimes(1); - expect(persist).toHaveBeenCalledWith(finals); + expect(persist).toHaveBeenCalledWith(finals, []); }); test("does not call persist for empty finals", () => { @@ -67,7 +82,7 @@ describe("transcript slice", () => { store .getState() - .handleTranscriptUpdate([], [makeWord(" partial", 100, 500)]); + .handleTranscriptUpdate([], [], [makePartialWord(" partial", 100, 500)]); expect(persist).not.toHaveBeenCalled(); }); @@ -80,8 +95,12 @@ describe("transcript slice", () => { store .getState() .handleTranscriptUpdate( - [makeWord(" Hello", 100, 500)], - [makeWord(" world", 550, 900), makeWord(" how", 950, 1200)], + [makeFinalWord(" Hello", 100, 500)], + [], + [ + makePartialWord(" world", 550, 900), + makePartialWord(" how", 950, 1200), + ], ); expect(persist).toHaveBeenCalledTimes(1); @@ -95,7 +114,9 @@ describe("transcript slice", () => { const persist = vi.fn(); store.getState().setTranscriptPersist(persist); - store.getState().handleTranscriptUpdate([], [makeWord(" hello", 100, 500)]); + store + .getState() + .handleTranscriptUpdate([], [], [makePartialWord(" hello", 100, 500)]); store.getState().resetTranscript(); diff --git a/apps/desktop/src/store/zustand/listener/transcript.ts b/apps/desktop/src/store/zustand/listener/transcript.ts index de201fde85..90db690831 100644 --- a/apps/desktop/src/store/zustand/listener/transcript.ts +++ b/apps/desktop/src/store/zustand/listener/transcript.ts @@ -1,14 +1,19 @@ import { create as mutate } from "mutative"; import type { StoreApi } from "zustand"; -import type { TranscriptWord } from "@hypr/plugin-listener"; +import type { + PartialWord, + SpeakerHint, + TranscriptWord, +} from "@hypr/plugin-listener"; -import type { WordLike } from "../../../utils/segment"; - -export type HandlePersistCallback = (words: TranscriptWord[]) => void; +export type HandlePersistCallback = ( + words: TranscriptWord[], + speakerHints: SpeakerHint[], +) => void; export type TranscriptState = { - partialWords: WordLike[]; + partialWords: PartialWord[]; handlePersist?: HandlePersistCallback; }; @@ -16,7 +21,8 @@ export type TranscriptActions = { setTranscriptPersist: (callback?: HandlePersistCallback) => void; handleTranscriptUpdate: ( newFinalWords: TranscriptWord[], - partialWords: TranscriptWord[], + speakerHints: SpeakerHint[], + partialWords: PartialWord[], ) => void; resetTranscript: () => void; }; @@ -26,15 +32,6 @@ const initialState: TranscriptState = { handlePersist: undefined, }; -function transcriptWordToWordLike(w: TranscriptWord): WordLike { - return { - text: w.text, - start_ms: w.start_ms, - end_ms: w.end_ms, - channel: w.channel, - }; -} - export const createTranscriptSlice = < T extends TranscriptState & TranscriptActions, >( @@ -50,16 +47,16 @@ export const createTranscriptSlice = < }), ); }, - handleTranscriptUpdate: (newFinalWords, partialWords) => { + handleTranscriptUpdate: (newFinalWords, speakerHints, partialWords) => { const { handlePersist } = get(); if (newFinalWords.length > 0) { - handlePersist?.(newFinalWords); + handlePersist?.(newFinalWords, speakerHints); } set((state) => mutate(state, (draft) => { - draft.partialWords = partialWords.map(transcriptWordToWordLike); + draft.partialWords = partialWords; }), ); }, diff --git a/apps/web/src/routeTree.gen.ts b/apps/web/src/routeTree.gen.ts index 71d0fe3209..a4bf38a7fd 100644 --- a/apps/web/src/routeTree.gen.ts +++ b/apps/web/src/routeTree.gen.ts @@ -3151,3 +3151,13 @@ const rootRouteChildren: RootRouteChildren = { export const routeTree = rootRouteImport ._addFileChildren(rootRouteChildren) ._addFileTypes() + +import type { getRouter } from './router.tsx' +import type { startInstance } from './start.ts' +declare module '@tanstack/react-start' { + interface Register { + ssr: true + router: Awaited> + config: Awaited> + } +} diff --git a/crates/transcript/src/accumulator/channel.rs b/crates/transcript/src/accumulator/channel.rs index 0d08000ddb..10fc6785ad 100644 --- a/crates/transcript/src/accumulator/channel.rs +++ b/crates/transcript/src/accumulator/channel.rs @@ -1,11 +1,11 @@ use super::words::{ - TranscriptWord, assign_id, dedup, ensure_space_prefix, splice, stitch, strip_overlap, + RawWord, SpeakerHint, TranscriptWord, dedup, finalize_words, splice, stitch, strip_overlap, }; pub(super) struct ChannelState { watermark: i64, - held: Option, - partials: Vec, + held: Option, + partials: Vec, } impl ChannelState { @@ -17,42 +17,36 @@ impl ChannelState { } } - pub(super) fn partials(&self) -> &[TranscriptWord] { + pub(super) fn partials(&self) -> &[RawWord] { &self.partials } - pub(super) fn apply_final(&mut self, words: Vec) -> Vec { + pub(super) fn apply_final( + &mut self, + words: Vec, + ) -> (Vec, Vec) { let response_end = words.last().map_or(0, |w| w.end_ms); - let new_words: Vec<_> = dedup(words, self.watermark) - .into_iter() - .map(assign_id) - .collect(); + let new_words: Vec<_> = dedup(words, self.watermark); if new_words.is_empty() { - return vec![]; + return (vec![], vec![]); } self.watermark = response_end; self.partials = strip_overlap(std::mem::take(&mut self.partials), response_end); - let (mut emitted, held) = stitch(self.held.take(), new_words); + let (emitted, held) = stitch(self.held.take(), new_words); self.held = held; - emitted.iter_mut().for_each(ensure_space_prefix); - emitted + finalize_words(emitted) } - pub(super) fn apply_partial(&mut self, words: Vec) { + pub(super) fn apply_partial(&mut self, words: Vec) { self.partials = splice(&self.partials, words); } - pub(super) fn drain(&mut self) -> Vec { - let mut result: Vec<_> = self.held.take().into_iter().collect(); - result.extend( - std::mem::take(&mut self.partials) - .into_iter() - .map(assign_id), - ); - result.iter_mut().for_each(ensure_space_prefix); - result + pub(super) fn drain(&mut self) -> (Vec, Vec) { + let mut raw: Vec<_> = self.held.take().into_iter().collect(); + raw.extend(std::mem::take(&mut self.partials)); + finalize_words(raw) } } diff --git a/crates/transcript/src/accumulator/mod.rs b/crates/transcript/src/accumulator/mod.rs index 678c817071..1e0040d1f9 100644 --- a/crates/transcript/src/accumulator/mod.rs +++ b/crates/transcript/src/accumulator/mod.rs @@ -22,15 +22,16 @@ use std::collections::BTreeMap; use owhisper_interface::stream::StreamResponse; -pub use words::{TranscriptUpdate, TranscriptWord}; +pub use words::{PartialWord, SpeakerHint, TranscriptUpdate, TranscriptWord}; use channel::ChannelState; -use words::{assemble, ensure_space_prefix}; +use words::{assemble, ensure_space_prefix_partial}; -/// Accumulates streaming ASR responses into clean, deduplicated `TranscriptWord` sequences. +/// Accumulates streaming ASR responses into clean, deduplicated transcript data. /// /// Each `process` call returns a `TranscriptUpdate` with: /// - `new_final_words`: words that became final since the last update (ready to persist) +/// - `speaker_hints`: speaker associations for the newly finalized words /// - `partial_words`: current in-progress words across all channels (for live display) /// /// Call `flush` at session end to drain any held/partial words that were never finalized. @@ -69,41 +70,46 @@ impl TranscriptAccumulator { let state = self.channels.entry(ch).or_insert_with(ChannelState::new); - let new_final_words = if is_final { + let (new_final_words, speaker_hints) = if is_final { state.apply_final(words) } else { state.apply_partial(words); - vec![] + (vec![], vec![]) }; Some(TranscriptUpdate { new_final_words, + speaker_hints, partial_words: self.all_partials(), }) } pub fn flush(&mut self) -> TranscriptUpdate { - let new_final_words = self - .channels - .values_mut() - .flat_map(|state| state.drain()) - .collect(); + let mut new_final_words = Vec::new(); + let mut speaker_hints = Vec::new(); + + for state in self.channels.values_mut() { + let (words, hints) = state.drain(); + new_final_words.extend(words); + speaker_hints.extend(hints); + } TranscriptUpdate { new_final_words, + speaker_hints, partial_words: vec![], } } - fn all_partials(&self) -> Vec { - let mut partials: Vec = self + fn all_partials(&self) -> Vec { + let mut partials: Vec = self .channels .values() - .flat_map(|state| state.partials().iter().cloned()) + .flat_map(|state| state.partials().iter().map(|w| w.to_partial())) .collect(); if let Some(first) = partials.first_mut() { - ensure_space_prefix(first); + ensure_space_prefix_partial(first); } partials @@ -185,6 +191,13 @@ mod tests { response(&ws, transcript, true, 0) } + fn finalize_with_speakers( + words: &[(&str, f64, f64, Option)], + transcript: &str, + ) -> StreamResponse { + response(words, transcript, true, 0) + } + fn replay(responses: &[StreamResponse]) -> Vec { let mut acc = TranscriptAccumulator::new(); let mut words = Vec::new(); @@ -414,6 +427,7 @@ mod tests { let flushed = acc.flush(); assert!(flushed.new_final_words.is_empty()); assert!(flushed.partial_words.is_empty()); + assert!(flushed.speaker_hints.is_empty()); } #[test] @@ -428,6 +442,45 @@ mod tests { assert!(acc.process(&ignored).is_none()); } + #[test] + fn speaker_hints_extracted_from_final_words() { + let mut acc = TranscriptAccumulator::new(); + + let update = acc + .process(&finalize_with_speakers( + &[(" Hello", 0.1, 0.5, Some(0)), (" world", 0.6, 0.9, Some(1))], + " Hello world", + )) + .unwrap(); + + assert_eq!(update.new_final_words.len(), 1); + assert_eq!(update.speaker_hints.len(), 1); + assert_eq!(update.speaker_hints[0].speaker_index, 0); + assert_eq!( + update.speaker_hints[0].word_id, + update.new_final_words[0].id + ); + + let flushed = acc.flush(); + assert_eq!(flushed.new_final_words.len(), 1); + assert_eq!(flushed.speaker_hints.len(), 1); + assert_eq!(flushed.speaker_hints[0].speaker_index, 1); + } + + #[test] + fn no_speaker_hints_when_speaker_is_none() { + let mut acc = TranscriptAccumulator::new(); + + let update = acc + .process(&finalize( + &[(" Hello", 0.1, 0.5), (" world", 0.6, 0.9)], + " Hello world", + )) + .unwrap(); + + assert!(update.speaker_hints.is_empty()); + } + macro_rules! fixture_test { ($test_name:ident, $file:literal) => { #[test] diff --git a/crates/transcript/src/accumulator/words.rs b/crates/transcript/src/accumulator/words.rs index fdb0020fc3..49d9238c8f 100644 --- a/crates/transcript/src/accumulator/words.rs +++ b/crates/transcript/src/accumulator/words.rs @@ -1,6 +1,8 @@ use owhisper_interface::stream::Word; use uuid::Uuid; +// ── Public output types ───────────────────────────────────────────────────── + #[derive(Debug, Clone, serde::Serialize, serde::Deserialize, specta::Type)] pub struct TranscriptWord { pub id: String, @@ -8,27 +10,78 @@ pub struct TranscriptWord { pub start_ms: i64, pub end_ms: i64, pub channel: i32, - pub speaker: Option, +} + +#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, specta::Type)] +pub struct PartialWord { + pub text: String, + pub start_ms: i64, + pub end_ms: i64, + pub channel: i32, +} + +#[derive(Debug, Clone, serde::Serialize, serde::Deserialize, specta::Type)] +pub struct SpeakerHint { + pub word_id: String, + pub speaker_index: i32, } #[derive(Debug, Clone, serde::Serialize, serde::Deserialize, specta::Type)] pub struct TranscriptUpdate { pub new_final_words: Vec, - pub partial_words: Vec, + pub speaker_hints: Vec, + pub partial_words: Vec, +} + +// ── Internal pipeline type ────────────────────────────────────────────────── + +#[derive(Debug, Clone)] +pub(super) struct RawWord { + pub(super) text: String, + pub(super) start_ms: i64, + pub(super) end_ms: i64, + pub(super) channel: i32, + pub(super) speaker: Option, +} + +impl RawWord { + pub(super) fn to_final(self, id: String) -> (TranscriptWord, Option) { + let hint = self.speaker.map(|speaker_index| SpeakerHint { + word_id: id.clone(), + speaker_index, + }); + let word = TranscriptWord { + id, + text: self.text, + start_ms: self.start_ms, + end_ms: self.end_ms, + channel: self.channel, + }; + (word, hint) + } + + pub(super) fn to_partial(&self) -> PartialWord { + PartialWord { + text: self.text.clone(), + start_ms: self.start_ms, + end_ms: self.end_ms, + channel: self.channel, + } + } } // ── Assembly ───────────────────────────────────────────────────────────────── -/// Assemble raw ASR tokens into merged `TranscriptWord`s. +/// Assemble raw ASR tokens into merged `RawWord`s. /// /// The transcript string is the **sole oracle** for word boundaries within a /// single response. `spacing_from_transcript` aligns each token to the /// transcript; a space prefix means "new word", no space means "same word." /// Adjacent tokens without a space prefix are unconditionally merged — /// no timing heuristics. -pub(super) fn assemble(raw: &[Word], transcript: &str, channel: i32) -> Vec { +pub(super) fn assemble(raw: &[Word], transcript: &str, channel: i32) -> Vec { let spaced = spacing_from_transcript(raw, transcript); - let mut result: Vec = Vec::new(); + let mut result: Vec = Vec::new(); for (w, text) in raw.iter().zip(&spaced) { let start_ms = (w.start * 1000.0).round() as i64; @@ -44,8 +97,7 @@ pub(super) fn assemble(raw: &[Word], transcript: &str, channel: i32) -> Vec Vec { // ── Pipeline stages ────────────────────────────────────────────────────────── /// Drop words already covered by the watermark (deduplication). -pub(super) fn dedup(words: Vec, watermark: i64) -> Vec { +pub(super) fn dedup(words: Vec, watermark: i64) -> Vec { words .into_iter() .skip_while(|w| w.end_ms <= watermark) @@ -113,9 +165,9 @@ pub(super) fn dedup(words: Vec, watermark: i64) -> Vec, - mut words: Vec, -) -> (Vec, Option) { + held: Option, + mut words: Vec, +) -> (Vec, Option) { if words.is_empty() { return (held.into_iter().collect(), None); } @@ -133,10 +185,7 @@ pub(super) fn stitch( } /// Replace the time range covered by `incoming` within `existing`. -pub(super) fn splice( - existing: &[TranscriptWord], - incoming: Vec, -) -> Vec { +pub(super) fn splice(existing: &[RawWord], incoming: Vec) -> Vec { let first_start = incoming.first().map_or(0, |w| w.start_ms); let last_end = incoming.last().map_or(0, |w| w.end_ms); @@ -150,7 +199,7 @@ pub(super) fn splice( } /// Remove partials that overlap with the finalized time range. -pub(super) fn strip_overlap(partials: Vec, final_end: i64) -> Vec { +pub(super) fn strip_overlap(partials: Vec, final_end: i64) -> Vec { partials .into_iter() .filter(|w| w.start_ms > final_end) @@ -159,22 +208,23 @@ pub(super) fn strip_overlap(partials: Vec, final_end: i64) -> Ve // ── Word-level transforms ──────────────────────────────────────────────────── -pub(super) fn assign_id(mut w: TranscriptWord) -> TranscriptWord { - w.id = Uuid::new_v4().to_string(); - w +pub(super) fn ensure_space_prefix_raw(w: &mut RawWord) { + if !w.text.starts_with(' ') { + w.text.insert(0, ' '); + } } -pub(super) fn ensure_space_prefix(w: &mut TranscriptWord) { +pub(super) fn ensure_space_prefix_partial(w: &mut PartialWord) { if !w.text.starts_with(' ') { w.text.insert(0, ' '); } } -fn should_stitch(tail: &TranscriptWord, head: &TranscriptWord) -> bool { +fn should_stitch(tail: &RawWord, head: &RawWord) -> bool { !head.text.starts_with(' ') && (head.start_ms - tail.end_ms) <= 300 } -fn merge_words(mut left: TranscriptWord, right: TranscriptWord) -> TranscriptWord { +fn merge_words(mut left: RawWord, right: RawWord) -> RawWord { left.text.push_str(&right.text); left.end_ms = right.end_ms; if left.speaker.is_none() { @@ -183,6 +233,26 @@ fn merge_words(mut left: TranscriptWord, right: TranscriptWord) -> TranscriptWor left } +/// Convert a list of RawWords into finalized TranscriptWords + SpeakerHints. +/// Assigns UUIDs, ensures space prefixes, and extracts speaker data. +pub(super) fn finalize_words(mut words: Vec) -> (Vec, Vec) { + words.iter_mut().for_each(ensure_space_prefix_raw); + + let mut final_words = Vec::with_capacity(words.len()); + let mut hints = Vec::new(); + + for w in words { + let id = Uuid::new_v4().to_string(); + let (word, hint) = w.to_final(id); + final_words.push(word); + if let Some(h) = hint { + hints.push(h); + } + } + + (final_words, hints) +} + #[cfg(test)] mod tests { use super::*; @@ -199,9 +269,8 @@ mod tests { } } - fn word(text: &str, start_ms: i64, end_ms: i64) -> TranscriptWord { - TranscriptWord { - id: Uuid::new_v4().to_string(), + fn word(text: &str, start_ms: i64, end_ms: i64) -> RawWord { + RawWord { text: text.to_string(), start_ms, end_ms, @@ -262,12 +331,10 @@ mod tests { #[test] fn assemble_merges_cjk_syllables_with_large_gap() { - // Korean "있는데" split into syllables with gaps well above 120 ms. - // The transcript confirms they form one word (no space between them). let raw = vec![ raw_word("있는", 0.0, 0.3), - raw_word("데", 0.54, 0.66), // 240 ms gap - raw_word(",", 0.84, 0.9), // punctuation attached + raw_word("데", 0.54, 0.66), + raw_word(",", 0.84, 0.9), ]; let words = assemble(&raw, " 있는데,", 0); assert_eq!( @@ -281,7 +348,6 @@ mod tests { #[test] fn assemble_splits_cjk_words_at_transcript_space_boundary() { - // "있는데 학습과" – two Korean words separated by a space in the transcript. let raw = vec![ raw_word("있는", 0.0, 0.3), raw_word("데", 0.54, 0.66), diff --git a/plugins/listener/js/bindings.gen.ts b/plugins/listener/js/bindings.gen.ts index 2b9a05f453..3f23d01228 100644 --- a/plugins/listener/js/bindings.gen.ts +++ b/plugins/listener/js/bindings.gen.ts @@ -163,6 +163,12 @@ export type DegradedError = | { type: "upstream_unavailable"; message: string } | { type: "connection_timeout" } | { type: "stream_error"; message: string }; +export type PartialWord = { + text: string; + start_ms: number; + end_ms: number; + channel: number; +}; export type SessionDataEvent = | { type: "audio_amplitude"; @@ -176,7 +182,8 @@ export type SessionDataEvent = type: "transcript_update"; session_id: string; new_final_words: TranscriptWord[]; - partial_words: TranscriptWord[]; + speaker_hints: SpeakerHint[]; + partial_words: PartialWord[]; }; export type SessionErrorEvent = | { @@ -206,6 +213,7 @@ export type SessionProgressEvent = | { type: "audio_ready"; session_id: string; device: string | null } | { type: "connecting"; session_id: string } | { type: "connected"; session_id: string; adapter: string }; +export type SpeakerHint = { word_id: string; speaker_index: number }; export type State = "active" | "inactive" | "finalizing"; export type StreamAlternatives = { transcript: string; @@ -264,7 +272,6 @@ export type TranscriptWord = { start_ms: number; end_ms: number; channel: number; - speaker: number | null; }; type __EventObj__ = { diff --git a/plugins/listener/src/actors/listener/mod.rs b/plugins/listener/src/actors/listener/mod.rs index ee1595142b..549f617706 100644 --- a/plugins/listener/src/actors/listener/mod.rs +++ b/plugins/listener/src/actors/listener/mod.rs @@ -146,6 +146,7 @@ impl Actor for ListenerActor { let _ = (SessionDataEvent::TranscriptUpdate { session_id: state.args.session_id.clone(), new_final_words: flush.new_final_words, + speaker_hints: flush.speaker_hints, partial_words: flush.partial_words, }) .emit(&state.args.app); @@ -227,6 +228,7 @@ impl Actor for ListenerActor { if let Err(error) = (SessionDataEvent::TranscriptUpdate { session_id: state.args.session_id.clone(), new_final_words: update.new_final_words, + speaker_hints: update.speaker_hints, partial_words: update.partial_words, }) .emit(&state.args.app) diff --git a/plugins/listener/src/events.rs b/plugins/listener/src/events.rs index f3956d92e0..0b443d8807 100644 --- a/plugins/listener/src/events.rs +++ b/plugins/listener/src/events.rs @@ -1,6 +1,6 @@ use owhisper_interface::stream::StreamResponse; -use hypr_transcript::accumulator::TranscriptWord; +use hypr_transcript::accumulator::{PartialWord, SpeakerHint, TranscriptWord}; #[macro_export] macro_rules! common_event_derives { @@ -86,7 +86,8 @@ common_event_derives! { TranscriptUpdate { session_id: String, new_final_words: Vec, - partial_words: Vec, + speaker_hints: Vec, + partial_words: Vec, }, } } diff --git a/plugins/listener2/js/bindings.gen.ts b/plugins/listener2/js/bindings.gen.ts index f8658e8f7d..7f0f9a2332 100644 --- a/plugins/listener2/js/bindings.gen.ts +++ b/plugins/listener2/js/bindings.gen.ts @@ -1,146 +1,231 @@ // @ts-nocheck +/** tauri-specta globals **/ +import { + Channel as TAURI_CHANNEL, + invoke as TAURI_INVOKE, +} from "@tauri-apps/api/core"; +import * as TAURI_API_EVENT from "@tauri-apps/api/event"; +import { type WebviewWindow as __WebviewWindow__ } from "@tauri-apps/api/webviewWindow"; // This file was generated by [tauri-specta](https://github.com/oscartbeaumont/tauri-specta). Do not edit this file manually. /** user-defined commands **/ - export const commands = { -async runBatch(params: BatchParams) : Promise> { + async runBatch(params: BatchParams): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener2|run_batch", { params }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async parseSubtitle(path: string) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener2|run_batch", { params }), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async parseSubtitle(path: string): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener2|parse_subtitle", { path }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async exportToVtt(sessionId: string, words: VttWord[]) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener2|parse_subtitle", { path }), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async exportToVtt( + sessionId: string, + words: VttWord[], + ): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener2|export_to_vtt", { sessionId, words }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async isSupportedLanguagesBatch(provider: string, model: string | null, languages: string[]) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE("plugin:listener2|export_to_vtt", { + sessionId, + words, + }), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async isSupportedLanguagesBatch( + provider: string, + model: string | null, + languages: string[], + ): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener2|is_supported_languages_batch", { provider, model, languages }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async suggestProvidersForLanguagesBatch(languages: string[]) : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE( + "plugin:listener2|is_supported_languages_batch", + { provider, model, languages }, + ), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async suggestProvidersForLanguagesBatch( + languages: string[], + ): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener2|suggest_providers_for_languages_batch", { languages }) }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -}, -async listDocumentedLanguageCodesBatch() : Promise> { + return { + status: "ok", + data: await TAURI_INVOKE( + "plugin:listener2|suggest_providers_for_languages_batch", + { languages }, + ), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, + async listDocumentedLanguageCodesBatch(): Promise> { try { - return { status: "ok", data: await TAURI_INVOKE("plugin:listener2|list_documented_language_codes_batch") }; -} catch (e) { - if(e instanceof Error) throw e; - else return { status: "error", error: e as any }; -} -} -} + return { + status: "ok", + data: await TAURI_INVOKE( + "plugin:listener2|list_documented_language_codes_batch", + ), + }; + } catch (e) { + if (e instanceof Error) throw e; + else return { status: "error", error: e as any }; + } + }, +}; /** user-defined events **/ - export const events = __makeEvents__<{ -batchEvent: BatchEvent + batchEvent: BatchEvent; }>({ -batchEvent: "plugin:listener2:batch-event" -}) + batchEvent: "plugin:listener2:batch-event", +}); /** user-defined constants **/ - - /** user-defined types **/ -export type BatchAlternatives = { transcript: string; confidence: number; words?: BatchWord[] } -export type BatchChannel = { alternatives: BatchAlternatives[] } -export type BatchEvent = { type: "batchStarted"; session_id: string } | { type: "batchResponse"; session_id: string; response: BatchResponse } | { type: "batchProgress"; session_id: string; words: TranscriptWord[]; percentage: number } | { type: "batchFailed"; session_id: string; error: string } -export type BatchParams = { session_id: string; provider: BatchProvider; file_path: string; model?: string | null; base_url: string; api_key: string; languages?: string[]; keywords?: string[] } -export type BatchProvider = "deepgram" | "soniox" | "assemblyai" | "am" -export type BatchResponse = { metadata: JsonValue; results: BatchResults } -export type BatchResults = { channels: BatchChannel[] } -export type BatchWord = { word: string; start: number; end: number; confidence: number; speaker: number | null; punctuated_word: string | null } -export type JsonValue = null | boolean | number | string | JsonValue[] | Partial<{ [key in string]: JsonValue }> -export type Subtitle = { tokens: Token[] } -export type Token = { text: string; start_time: number; end_time: number; speaker: string | null } -export type TranscriptWord = { id: string; text: string; start_ms: number; end_ms: number; channel: number; speaker: number | null } -export type VttWord = { text: string; start_ms: number; end_ms: number; speaker: string | null } - -/** tauri-specta globals **/ - -import { - invoke as TAURI_INVOKE, - Channel as TAURI_CHANNEL, -} from "@tauri-apps/api/core"; -import * as TAURI_API_EVENT from "@tauri-apps/api/event"; -import { type WebviewWindow as __WebviewWindow__ } from "@tauri-apps/api/webviewWindow"; +export type BatchAlternatives = { + transcript: string; + confidence: number; + words?: BatchWord[]; +}; +export type BatchChannel = { alternatives: BatchAlternatives[] }; +export type BatchEvent = + | { type: "batchStarted"; session_id: string } + | { type: "batchResponse"; session_id: string; response: BatchResponse } + | { + type: "batchProgress"; + session_id: string; + words: TranscriptWord[]; + speaker_hints: SpeakerHint[]; + percentage: number; + } + | { type: "batchFailed"; session_id: string; error: string }; +export type BatchParams = { + session_id: string; + provider: BatchProvider; + file_path: string; + model?: string | null; + base_url: string; + api_key: string; + languages?: string[]; + keywords?: string[]; +}; +export type BatchProvider = "deepgram" | "soniox" | "assemblyai" | "am"; +export type BatchResponse = { metadata: JsonValue; results: BatchResults }; +export type BatchResults = { channels: BatchChannel[] }; +export type BatchWord = { + word: string; + start: number; + end: number; + confidence: number; + speaker: number | null; + punctuated_word: string | null; +}; +export type JsonValue = + | null + | boolean + | number + | string + | JsonValue[] + | Partial<{ [key in string]: JsonValue }>; +export type SpeakerHint = { word_id: string; speaker_index: number }; +export type Subtitle = { tokens: Token[] }; +export type Token = { + text: string; + start_time: number; + end_time: number; + speaker: string | null; +}; +export type TranscriptWord = { + id: string; + text: string; + start_ms: number; + end_ms: number; + channel: number; +}; +export type VttWord = { + text: string; + start_ms: number; + end_ms: number; + speaker: string | null; +}; type __EventObj__ = { - listen: ( - cb: TAURI_API_EVENT.EventCallback, - ) => ReturnType>; - once: ( - cb: TAURI_API_EVENT.EventCallback, - ) => ReturnType>; - emit: null extends T - ? (payload?: T) => ReturnType - : (payload: T) => ReturnType; + listen: ( + cb: TAURI_API_EVENT.EventCallback, + ) => ReturnType>; + once: ( + cb: TAURI_API_EVENT.EventCallback, + ) => ReturnType>; + emit: null extends T + ? (payload?: T) => ReturnType + : (payload: T) => ReturnType; }; export type Result = - | { status: "ok"; data: T } - | { status: "error"; error: E }; + | { status: "ok"; data: T } + | { status: "error"; error: E }; function __makeEvents__>( - mappings: Record, + mappings: Record, ) { - return new Proxy( - {} as unknown as { - [K in keyof T]: __EventObj__ & { - (handle: __WebviewWindow__): __EventObj__; - }; - }, - { - get: (_, event) => { - const name = mappings[event as keyof T]; - - return new Proxy((() => {}) as any, { - apply: (_, __, [window]: [__WebviewWindow__]) => ({ - listen: (arg: any) => window.listen(name, arg), - once: (arg: any) => window.once(name, arg), - emit: (arg: any) => window.emit(name, arg), - }), - get: (_, command: keyof __EventObj__) => { - switch (command) { - case "listen": - return (arg: any) => TAURI_API_EVENT.listen(name, arg); - case "once": - return (arg: any) => TAURI_API_EVENT.once(name, arg); - case "emit": - return (arg: any) => TAURI_API_EVENT.emit(name, arg); - } - }, - }); - }, - }, - ); + return new Proxy( + {} as unknown as { + [K in keyof T]: __EventObj__ & { + (handle: __WebviewWindow__): __EventObj__; + }; + }, + { + get: (_, event) => { + const name = mappings[event as keyof T]; + + return new Proxy((() => {}) as any, { + apply: (_, __, [window]: [__WebviewWindow__]) => ({ + listen: (arg: any) => window.listen(name, arg), + once: (arg: any) => window.once(name, arg), + emit: (arg: any) => window.emit(name, arg), + }), + get: (_, command: keyof __EventObj__) => { + switch (command) { + case "listen": + return (arg: any) => TAURI_API_EVENT.listen(name, arg); + case "once": + return (arg: any) => TAURI_API_EVENT.once(name, arg); + case "emit": + return (arg: any) => TAURI_API_EVENT.emit(name, arg); + } + }, + }); + }, + }, + ); } diff --git a/plugins/listener2/src/batch.rs b/plugins/listener2/src/batch.rs index cc96e2d84e..f4a644aefd 100644 --- a/plugins/listener2/src/batch.rs +++ b/plugins/listener2/src/batch.rs @@ -101,6 +101,7 @@ impl BatchState { BatchEvent::BatchTranscriptWords { session_id: self.session_id.clone(), words: update.new_final_words, + speaker_hints: update.speaker_hints, percentage, } .emit(&self.app)?; @@ -114,6 +115,7 @@ impl BatchState { BatchEvent::BatchTranscriptWords { session_id: self.session_id.clone(), words: update.new_final_words, + speaker_hints: update.speaker_hints, percentage, } .emit(&self.app)?; diff --git a/plugins/listener2/src/events.rs b/plugins/listener2/src/events.rs index a14ef6c1f5..28545d0a62 100644 --- a/plugins/listener2/src/events.rs +++ b/plugins/listener2/src/events.rs @@ -1,4 +1,4 @@ -use hypr_transcript::accumulator::TranscriptWord; +use hypr_transcript::accumulator::{SpeakerHint, TranscriptWord}; use owhisper_interface::batch::Response as BatchResponse; #[macro_export] @@ -23,6 +23,7 @@ common_event_derives! { BatchTranscriptWords { session_id: String, words: Vec, + speaker_hints: Vec, percentage: f64, }, #[serde(rename = "batchFailed")] From c8bfb0750b62164944945fd182826b2b26c8f7e0 Mon Sep 17 00:00:00 2001 From: Yujong Lee Date: Fri, 20 Feb 2026 11:13:23 +0900 Subject: [PATCH 6/6] refactor(transcript): use hypr-data fixtures instead of local copies Adapts accumulator tests to reference hypr_data::english_1::DEEPGRAM_JSON, hypr_data::english_1::SONIOX_JSON, and hypr_data::korean_1::SONIOX_JSON now that fixture files live in the shared data crate. Co-authored-by: Cursor --- Cargo.lock | 1 + crates/transcript/Cargo.toml | 1 + .../src/accumulator/fixtures/deepgram_1.json | 2899 - .../src/accumulator/fixtures/soniox_1.json | 21092 ---- .../src/accumulator/fixtures/soniox_2.json | 99368 ---------------- crates/transcript/src/accumulator/mod.rs | 20 +- 6 files changed, 16 insertions(+), 123365 deletions(-) delete mode 100644 crates/transcript/src/accumulator/fixtures/deepgram_1.json delete mode 100644 crates/transcript/src/accumulator/fixtures/soniox_1.json delete mode 100644 crates/transcript/src/accumulator/fixtures/soniox_2.json diff --git a/Cargo.lock b/Cargo.lock index ba88a9cc09..c86b84db65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -19822,6 +19822,7 @@ dependencies = [ name = "transcript" version = "0.1.0" dependencies = [ + "data", "owhisper-interface", "serde", "serde_json", diff --git a/crates/transcript/Cargo.toml b/crates/transcript/Cargo.toml index 87e506cf2c..9fd1d63589 100644 --- a/crates/transcript/Cargo.toml +++ b/crates/transcript/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.0" edition = "2024" [dev-dependencies] +hypr-data = { workspace = true } serde_json = { workspace = true } [dependencies] diff --git a/crates/transcript/src/accumulator/fixtures/deepgram_1.json b/crates/transcript/src/accumulator/fixtures/deepgram_1.json deleted file mode 100644 index e83d9c7aa7..0000000000 --- a/crates/transcript/src/accumulator/fixtures/deepgram_1.json +++ /dev/null @@ -1,2899 +0,0 @@ -[ - { - "type": "Results", - "start": 0.0, - "duration": 1.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "", - "words": [], - "confidence": 0.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.0, - "duration": 2.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "", - "words": [], - "confidence": 0.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.0, - "duration": 3.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "", - "words": [], - "confidence": 0.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.0, - "duration": 4.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is", - "words": [ - { - "word": "maybe", - "start": 3.36, - "end": 3.6799998, - "confidence": 0.94384766, - "speaker": 0, - "punctuated_word": "Maybe", - "language": null - }, - { - "word": "this", - "start": 3.6799998, - "end": 3.84, - "confidence": 0.9970703, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 3.84, - "end": 3.9199998, - "confidence": 0.87597656, - "speaker": 0, - "punctuated_word": "is", - "language": null - } - ], - "confidence": 0.94384766, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.0, - "duration": 3.08, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "", - "words": [], - "confidence": 0.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.08, - "duration": 1.9200001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me,", - "words": [ - { - "word": "maybe", - "start": 3.3999999, - "end": 3.7199998, - "confidence": 0.9873047, - "speaker": 0, - "punctuated_word": "Maybe", - "language": null - }, - { - "word": "this", - "start": 3.7199998, - "end": 3.96, - "confidence": 0.9980469, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 3.96, - "end": 4.12, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "me", - "start": 4.12, - "end": 4.52, - "confidence": 0.7385254, - "speaker": 0, - "punctuated_word": "me,", - "language": null - } - ], - "confidence": 0.9980469, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.08, - "duration": 2.92, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me talking to the", - "words": [ - { - "word": "maybe", - "start": 3.3999999, - "end": 3.7199998, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "Maybe", - "language": null - }, - { - "word": "this", - "start": 3.7199998, - "end": 3.96, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 3.96, - "end": 4.12, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "me", - "start": 4.12, - "end": 4.68, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "talking", - "start": 4.84, - "end": 5.3199997, - "confidence": 0.7114258, - "speaker": 0, - "punctuated_word": "talking", - "language": null - }, - { - "word": "to", - "start": 5.3199997, - "end": 5.64, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "to", - "language": null - }, - { - "word": "the", - "start": 5.64, - "end": 5.8, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "the", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.08, - "duration": 3.92, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me talking to the audience a little bit because I get", - "words": [ - { - "word": "maybe", - "start": 3.3999999, - "end": 3.7199998, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "Maybe", - "language": null - }, - { - "word": "this", - "start": 3.7199998, - "end": 3.96, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 3.96, - "end": 4.12, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "me", - "start": 4.12, - "end": 4.3599997, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "talking", - "start": 4.3599997, - "end": 5.3199997, - "confidence": 0.5361328, - "speaker": 0, - "punctuated_word": "talking", - "language": null - }, - { - "word": "to", - "start": 5.3199997, - "end": 5.64, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "to", - "language": null - }, - { - "word": "the", - "start": 5.64, - "end": 5.8, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "the", - "language": null - }, - { - "word": "audience", - "start": 5.8, - "end": 6.12, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "audience", - "language": null - }, - { - "word": "a", - "start": 6.12, - "end": 6.2799997, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "a", - "language": null - }, - { - "word": "little", - "start": 6.2799997, - "end": 6.4399996, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "little", - "language": null - }, - { - "word": "bit", - "start": 6.4399996, - "end": 6.5199995, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "bit", - "language": null - }, - { - "word": "because", - "start": 6.5199995, - "end": 6.68, - "confidence": 0.6738281, - "speaker": 0, - "punctuated_word": "because", - "language": null - }, - { - "word": "i", - "start": 6.68, - "end": 6.7599998, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "I", - "language": null - }, - { - "word": "get", - "start": 6.7599998, - "end": 6.92, - "confidence": 0.53759766, - "speaker": 0, - "punctuated_word": "get", - "language": null - } - ], - "confidence": 0.99902344, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.08, - "duration": 4.92, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me talking to the audience a little bit because I get these days", - "words": [ - { - "word": "maybe", - "start": 3.3999999, - "end": 3.7199998, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "Maybe", - "language": null - }, - { - "word": "this", - "start": 3.7199998, - "end": 3.96, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 3.96, - "end": 4.12, - "confidence": 0.9902344, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "me", - "start": 4.12, - "end": 4.68, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "talking", - "start": 4.84, - "end": 5.3199997, - "confidence": 0.61376953, - "speaker": 0, - "punctuated_word": "talking", - "language": null - }, - { - "word": "to", - "start": 5.3199997, - "end": 5.64, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "to", - "language": null - }, - { - "word": "the", - "start": 5.64, - "end": 5.8, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "the", - "language": null - }, - { - "word": "audience", - "start": 5.8, - "end": 6.12, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "audience", - "language": null - }, - { - "word": "a", - "start": 6.12, - "end": 6.2799997, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "a", - "language": null - }, - { - "word": "little", - "start": 6.2799997, - "end": 6.4399996, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "little", - "language": null - }, - { - "word": "bit", - "start": 6.4399996, - "end": 6.5199995, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "bit", - "language": null - }, - { - "word": "because", - "start": 6.5199995, - "end": 6.7599998, - "confidence": 0.59277344, - "speaker": 0, - "punctuated_word": "because", - "language": null - }, - { - "word": "i", - "start": 6.7599998, - "end": 6.92, - "confidence": 0.9970703, - "speaker": 0, - "punctuated_word": "I", - "language": null - }, - { - "word": "get", - "start": 6.92, - "end": 7.16, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "get", - "language": null - }, - { - "word": "these", - "start": 7.16, - "end": 7.48, - "confidence": 0.7895508, - "speaker": 0, - "punctuated_word": "these", - "language": null - }, - { - "word": "days", - "start": 7.48, - "end": 7.72, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "days", - "language": null - } - ], - "confidence": 0.99902344, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.08, - "duration": 4.9700003, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me talking to the audience a little bit because I get these days", - "words": [ - { - "word": "maybe", - "start": 3.3999999, - "end": 3.7199998, - "confidence": 0.9980469, - "speaker": 0, - "punctuated_word": "Maybe", - "language": null - }, - { - "word": "this", - "start": 3.7199998, - "end": 3.96, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 3.96, - "end": 4.12, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "me", - "start": 4.12, - "end": 4.68, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "talking", - "start": 4.84, - "end": 5.3199997, - "confidence": 0.63378906, - "speaker": 0, - "punctuated_word": "talking", - "language": null - }, - { - "word": "to", - "start": 5.3199997, - "end": 5.64, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "to", - "language": null - }, - { - "word": "the", - "start": 5.64, - "end": 5.8, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "the", - "language": null - }, - { - "word": "audience", - "start": 5.8, - "end": 6.12, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "audience", - "language": null - }, - { - "word": "a", - "start": 6.12, - "end": 6.2799997, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "a", - "language": null - }, - { - "word": "little", - "start": 6.2799997, - "end": 6.4399996, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "little", - "language": null - }, - { - "word": "bit", - "start": 6.4399996, - "end": 6.5199995, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "bit", - "language": null - }, - { - "word": "because", - "start": 6.5199995, - "end": 6.7599998, - "confidence": 0.5957031, - "speaker": 0, - "punctuated_word": "because", - "language": null - }, - { - "word": "i", - "start": 6.7599998, - "end": 6.92, - "confidence": 0.9970703, - "speaker": 0, - "punctuated_word": "I", - "language": null - }, - { - "word": "get", - "start": 6.92, - "end": 7.16, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "get", - "language": null - }, - { - "word": "these", - "start": 7.16, - "end": 7.48, - "confidence": 0.77001953, - "speaker": 0, - "punctuated_word": "these", - "language": null - }, - { - "word": "days", - "start": 7.48, - "end": 7.72, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "days", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 8.05, - "duration": 1.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "so many", - "words": [ - { - "word": "so", - "start": 8.05, - "end": 8.53, - "confidence": 0.9604492, - "speaker": 0, - "punctuated_word": "so", - "language": null - }, - { - "word": "many", - "start": 8.53, - "end": 8.85, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "many", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 8.05, - "duration": 2.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "so many messages. I", - "words": [ - { - "word": "so", - "start": 8.13, - "end": 8.690001, - "confidence": 0.97509766, - "speaker": 0, - "punctuated_word": "so", - "language": null - }, - { - "word": "many", - "start": 8.690001, - "end": 9.01, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "many", - "language": null - }, - { - "word": "messages", - "start": 9.01, - "end": 9.65, - "confidence": 0.9914551, - "speaker": 0, - "punctuated_word": "messages.", - "language": null - }, - { - "word": "i", - "start": 9.7300005, - "end": 9.97, - "confidence": 0.9873047, - "speaker": 0, - "punctuated_word": "I", - "language": null - } - ], - "confidence": 0.9914551, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 8.05, - "duration": 3.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "so many messages, advice on how", - "words": [ - { - "word": "so", - "start": 8.05, - "end": 8.690001, - "confidence": 0.9790039, - "speaker": 0, - "punctuated_word": "so", - "language": null - }, - { - "word": "many", - "start": 8.690001, - "end": 9.01, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "many", - "language": null - }, - { - "word": "messages", - "start": 9.01, - "end": 9.73, - "confidence": 0.8666992, - "speaker": 0, - "punctuated_word": "messages,", - "language": null - }, - { - "word": "advice", - "start": 10.05, - "end": 10.530001, - "confidence": 0.99121094, - "speaker": 0, - "punctuated_word": "advice", - "language": null - }, - { - "word": "on", - "start": 10.530001, - "end": 10.85, - "confidence": 0.9326172, - "speaker": 0, - "punctuated_word": "on", - "language": null - }, - { - "word": "how", - "start": 10.85, - "end": 11.01, - "confidence": 0.9980469, - "speaker": 0, - "punctuated_word": "how", - "language": null - } - ], - "confidence": 0.99121094, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 8.05, - "duration": 3.5999994, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "so many messages, advice on how to, like,", - "words": [ - { - "word": "so", - "start": 8.05, - "end": 8.690001, - "confidence": 0.96875, - "speaker": 0, - "punctuated_word": "so", - "language": null - }, - { - "word": "many", - "start": 8.690001, - "end": 9.01, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "many", - "language": null - }, - { - "word": "messages", - "start": 9.01, - "end": 9.73, - "confidence": 0.84277344, - "speaker": 0, - "punctuated_word": "messages,", - "language": null - }, - { - "word": "advice", - "start": 10.05, - "end": 10.610001, - "confidence": 0.9790039, - "speaker": 0, - "punctuated_word": "advice", - "language": null - }, - { - "word": "on", - "start": 10.610001, - "end": 10.93, - "confidence": 0.9482422, - "speaker": 0, - "punctuated_word": "on", - "language": null - }, - { - "word": "how", - "start": 10.93, - "end": 11.09, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "how", - "language": null - }, - { - "word": "to", - "start": 11.09, - "end": 11.33, - "confidence": 0.9641113, - "speaker": 0, - "punctuated_word": "to,", - "language": null - }, - { - "word": "like", - "start": 11.33, - "end": 11.41, - "confidence": 0.9855957, - "speaker": 0, - "punctuated_word": "like,", - "language": null - } - ], - "confidence": 0.9790039, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 11.65, - "duration": 1.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "look", - "words": [ - { - "word": "look", - "start": 12.37, - "end": 12.61, - "confidence": 0.5029297, - "speaker": 0, - "punctuated_word": "look", - "language": null - } - ], - "confidence": 0.5029297, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 11.65, - "duration": 2.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "learn stuff. Okay?", - "words": [ - { - "word": "learn", - "start": 12.53, - "end": 12.929999, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "learn", - "language": null - }, - { - "word": "stuff", - "start": 12.929999, - "end": 13.41, - "confidence": 0.9946289, - "speaker": 0, - "punctuated_word": "stuff.", - "language": null - }, - { - "word": "okay", - "start": 13.41, - "end": 13.65, - "confidence": 0.78466797, - "speaker": 0, - "punctuated_word": "Okay?", - "language": null - } - ], - "confidence": 0.9946289, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 11.65, - "duration": 3.0, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "learn stuff. Okay?", - "words": [ - { - "word": "learn", - "start": 12.53, - "end": 12.929999, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "learn", - "language": null - }, - { - "word": "stuff", - "start": 12.929999, - "end": 13.49, - "confidence": 0.99853516, - "speaker": 0, - "punctuated_word": "stuff.", - "language": null - }, - { - "word": "okay", - "start": 13.49, - "end": 13.809999, - "confidence": 0.9736328, - "speaker": 0, - "punctuated_word": "Okay?", - "language": null - } - ], - "confidence": 0.99853516, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.65, - "duration": 1.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "My", - "words": [ - { - "word": "my", - "start": 15.21, - "end": 15.45, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "My", - "language": null - } - ], - "confidence": 0.99902344, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.65, - "duration": 1.3000002, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "My", - "words": [ - { - "word": "my", - "start": 15.29, - "end": 15.53, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "My", - "language": null - } - ], - "confidence": 0.99902344, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.95, - "duration": 1.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "this this this", - "words": [ - { - "word": "this", - "start": 15.95, - "end": 16.43, - "confidence": 0.9902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.43, - "end": 16.67, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.67, - "end": 16.83, - "confidence": 0.9863281, - "speaker": 0, - "punctuated_word": "this", - "language": null - } - ], - "confidence": 0.9902344, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.95, - "duration": 2.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "this this this is not me being", - "words": [ - { - "word": "this", - "start": 16.11, - "end": 16.43, - "confidence": 0.98828125, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.43, - "end": 16.75, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.75, - "end": 16.99, - "confidence": 0.9604492, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 16.99, - "end": 17.15, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "not", - "start": 17.15, - "end": 17.39, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "not", - "language": null - }, - { - "word": "me", - "start": 17.39, - "end": 17.63, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "being", - "start": 17.63, - "end": 17.869999, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "being", - "language": null - } - ], - "confidence": 0.99609375, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.95, - "duration": 3.0500002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "this this this is not me being mean. I think this is", - "words": [ - { - "word": "this", - "start": 15.95, - "end": 16.43, - "confidence": 0.984375, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.43, - "end": 16.75, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.75, - "end": 16.99, - "confidence": 0.9633789, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 16.99, - "end": 17.15, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "not", - "start": 17.15, - "end": 17.39, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "not", - "language": null - }, - { - "word": "me", - "start": 17.39, - "end": 17.71, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "being", - "start": 17.71, - "end": 17.95, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "being", - "language": null - }, - { - "word": "mean", - "start": 17.95, - "end": 18.27, - "confidence": 0.98950195, - "speaker": 0, - "punctuated_word": "mean.", - "language": null - }, - { - "word": "i", - "start": 18.27, - "end": 18.43, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "I", - "language": null - }, - { - "word": "think", - "start": 18.43, - "end": 18.51, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "think", - "language": null - }, - { - "word": "this", - "start": 18.51, - "end": 18.67, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 18.67, - "end": 18.83, - "confidence": 0.9970703, - "speaker": 0, - "punctuated_word": "is", - "language": null - } - ], - "confidence": 0.99902344, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.95, - "duration": 4.05, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "this this this is not me being mean. I think this is quite profound, actually,", - "words": [ - { - "word": "this", - "start": 15.95, - "end": 16.43, - "confidence": 0.99316406, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.43, - "end": 16.75, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.75, - "end": 16.99, - "confidence": 0.9667969, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 16.99, - "end": 17.15, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "not", - "start": 17.15, - "end": 17.39, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "not", - "language": null - }, - { - "word": "me", - "start": 17.39, - "end": 17.71, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "being", - "start": 17.71, - "end": 17.95, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "being", - "language": null - }, - { - "word": "mean", - "start": 17.95, - "end": 18.35, - "confidence": 0.9863281, - "speaker": 0, - "punctuated_word": "mean.", - "language": null - }, - { - "word": "i", - "start": 18.35, - "end": 18.43, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "I", - "language": null - }, - { - "word": "think", - "start": 18.43, - "end": 18.59, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "think", - "language": null - }, - { - "word": "this", - "start": 18.59, - "end": 18.75, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 18.75, - "end": 18.91, - "confidence": 0.9980469, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "quite", - "start": 18.91, - "end": 19.15, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "quite", - "language": null - }, - { - "word": "profound", - "start": 19.15, - "end": 19.71, - "confidence": 0.82836914, - "speaker": 0, - "punctuated_word": "profound,", - "language": null - }, - { - "word": "actually", - "start": 19.71, - "end": 19.95, - "confidence": 0.6101074, - "speaker": 0, - "punctuated_word": "actually,", - "language": null - } - ], - "confidence": 0.9980469, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.95, - "duration": 4.6400003, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "this this this is not me being mean. I think this is quite profound, actually.", - "words": [ - { - "word": "this", - "start": 15.95, - "end": 16.43, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.43, - "end": 16.75, - "confidence": 0.99121094, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "this", - "start": 16.75, - "end": 16.99, - "confidence": 0.78271484, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 16.99, - "end": 17.15, - "confidence": 0.9951172, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "not", - "start": 17.15, - "end": 17.39, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "not", - "language": null - }, - { - "word": "me", - "start": 17.39, - "end": 17.71, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "me", - "language": null - }, - { - "word": "being", - "start": 17.71, - "end": 17.869999, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "being", - "language": null - }, - { - "word": "mean", - "start": 17.869999, - "end": 18.35, - "confidence": 0.9863281, - "speaker": 0, - "punctuated_word": "mean.", - "language": null - }, - { - "word": "i", - "start": 18.35, - "end": 18.43, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "I", - "language": null - }, - { - "word": "think", - "start": 18.43, - "end": 18.59, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "think", - "language": null - }, - { - "word": "this", - "start": 18.59, - "end": 18.75, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "this", - "language": null - }, - { - "word": "is", - "start": 18.75, - "end": 18.91, - "confidence": 0.9980469, - "speaker": 0, - "punctuated_word": "is", - "language": null - }, - { - "word": "quite", - "start": 18.91, - "end": 19.15, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "quite", - "language": null - }, - { - "word": "profound", - "start": 19.15, - "end": 19.789999, - "confidence": 0.8364258, - "speaker": 0, - "punctuated_word": "profound,", - "language": null - }, - { - "word": "actually", - "start": 19.789999, - "end": 20.11, - "confidence": 0.94433594, - "speaker": 0, - "punctuated_word": "actually.", - "language": null - } - ], - "confidence": 0.9980469, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.59, - "duration": 1.0100002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Is you should", - "words": [ - { - "word": "is", - "start": 20.67, - "end": 21.07, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "Is", - "language": null - }, - { - "word": "you", - "start": 21.07, - "end": 21.39, - "confidence": 0.97314453, - "speaker": 0, - "punctuated_word": "you", - "language": null - }, - { - "word": "should", - "start": 21.39, - "end": 21.55, - "confidence": 0.9980469, - "speaker": 0, - "punctuated_word": "should", - "language": null - } - ], - "confidence": 0.99609375, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.59, - "duration": 2.0100002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Is you should Google it.", - "words": [ - { - "word": "is", - "start": 20.67, - "end": 21.15, - "confidence": 0.9970703, - "speaker": 0, - "punctuated_word": "Is", - "language": null - }, - { - "word": "you", - "start": 21.15, - "end": 21.47, - "confidence": 0.97802734, - "speaker": 0, - "punctuated_word": "you", - "language": null - }, - { - "word": "should", - "start": 21.47, - "end": 21.710001, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "should", - "language": null - }, - { - "word": "google", - "start": 21.710001, - "end": 22.03, - "confidence": 0.8510742, - "speaker": 0, - "punctuated_word": "Google", - "language": null - }, - { - "word": "it", - "start": 22.03, - "end": 22.27, - "confidence": 0.8942871, - "speaker": 0, - "punctuated_word": "it.", - "language": null - } - ], - "confidence": 0.97802734, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.59, - "duration": 3.0100002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Is you should Google it. Oh, yeah.", - "words": [ - { - "word": "is", - "start": 20.67, - "end": 21.23, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "Is", - "language": null - }, - { - "word": "you", - "start": 21.23, - "end": 21.47, - "confidence": 0.9770508, - "speaker": 0, - "punctuated_word": "you", - "language": null - }, - { - "word": "should", - "start": 21.47, - "end": 21.710001, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "should", - "language": null - }, - { - "word": "google", - "start": 21.710001, - "end": 22.11, - "confidence": 0.8378906, - "speaker": 0, - "punctuated_word": "Google", - "language": null - }, - { - "word": "it", - "start": 22.11, - "end": 22.59, - "confidence": 0.9926758, - "speaker": 0, - "punctuated_word": "it.", - "language": null - }, - { - "word": "oh", - "start": 22.91, - "end": 23.23, - "confidence": 0.85375977, - "speaker": 0, - "punctuated_word": "Oh,", - "language": null - }, - { - "word": "yeah", - "start": 23.23, - "end": 23.31, - "confidence": 0.9772949, - "speaker": 0, - "punctuated_word": "yeah.", - "language": null - } - ], - "confidence": 0.9772949, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.59, - "duration": 4.01, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Is you should Google it. Oh, yeah. Like,", - "words": [ - { - "word": "is", - "start": 20.75, - "end": 21.15, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "Is", - "language": null - }, - { - "word": "you", - "start": 21.15, - "end": 21.47, - "confidence": 0.9838867, - "speaker": 0, - "punctuated_word": "you", - "language": null - }, - { - "word": "should", - "start": 21.47, - "end": 21.710001, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "should", - "language": null - }, - { - "word": "google", - "start": 21.710001, - "end": 22.11, - "confidence": 0.83935547, - "speaker": 0, - "punctuated_word": "Google", - "language": null - }, - { - "word": "it", - "start": 22.11, - "end": 22.59, - "confidence": 0.9926758, - "speaker": 0, - "punctuated_word": "it.", - "language": null - }, - { - "word": "oh", - "start": 22.83, - "end": 23.23, - "confidence": 0.89990234, - "speaker": 0, - "punctuated_word": "Oh,", - "language": null - }, - { - "word": "yeah", - "start": 23.23, - "end": 23.71, - "confidence": 0.9941406, - "speaker": 0, - "punctuated_word": "yeah.", - "language": null - }, - { - "word": "like", - "start": 23.95, - "end": 24.19, - "confidence": 0.7956543, - "speaker": 0, - "punctuated_word": "Like,", - "language": null - } - ], - "confidence": 0.9926758, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.59, - "duration": 3.1399994, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Is you should Google it. Oh, yeah.", - "words": [ - { - "word": "is", - "start": 20.75, - "end": 21.15, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "Is", - "language": null - }, - { - "word": "you", - "start": 21.15, - "end": 21.47, - "confidence": 0.9790039, - "speaker": 0, - "punctuated_word": "you", - "language": null - }, - { - "word": "should", - "start": 21.47, - "end": 21.710001, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "should", - "language": null - }, - { - "word": "google", - "start": 21.710001, - "end": 22.11, - "confidence": 0.81640625, - "speaker": 0, - "punctuated_word": "Google", - "language": null - }, - { - "word": "it", - "start": 22.11, - "end": 22.59, - "confidence": 0.9916992, - "speaker": 0, - "punctuated_word": "it.", - "language": null - }, - { - "word": "oh", - "start": 22.75, - "end": 23.23, - "confidence": 0.84814453, - "speaker": 0, - "punctuated_word": "Oh,", - "language": null - }, - { - "word": "yeah", - "start": 23.23, - "end": 23.39, - "confidence": 0.9848633, - "speaker": 0, - "punctuated_word": "yeah.", - "language": null - } - ], - "confidence": 0.9848633, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 23.73, - "duration": 1.8700008, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Like,", - "words": [ - { - "word": "like", - "start": 23.89, - "end": 24.289999, - "confidence": 0.69763184, - "speaker": 0, - "punctuated_word": "Like,", - "language": null - } - ], - "confidence": 0.69763184, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 23.73, - "duration": 2.9700012, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Like, 1 of the", - "words": [ - { - "word": "like", - "start": 23.89, - "end": 24.609999, - "confidence": 0.78515625, - "speaker": 0, - "punctuated_word": "Like,", - "language": null - }, - { - "word": "1", - "start": 24.689999, - "end": 25.17, - "confidence": 0.8378906, - "speaker": 0, - "punctuated_word": "1", - "language": null - }, - { - "word": "of", - "start": 26.369999, - "end": 26.529999, - "confidence": 0.66064453, - "speaker": 0, - "punctuated_word": "of", - "language": null - }, - { - "word": "the", - "start": 26.529999, - "end": 26.609999, - "confidence": 0.5205078, - "speaker": 0, - "punctuated_word": "the", - "language": null - } - ], - "confidence": 0.78515625, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 23.73, - "duration": 3.5699997, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Like, 1 of the", - "words": [ - { - "word": "like", - "start": 23.89, - "end": 24.609999, - "confidence": 0.7541504, - "speaker": 0, - "punctuated_word": "Like,", - "language": null - }, - { - "word": "1", - "start": 24.689999, - "end": 25.17, - "confidence": 0.85839844, - "speaker": 0, - "punctuated_word": "1", - "language": null - }, - { - "word": "of", - "start": 26.449999, - "end": 26.609999, - "confidence": 0.71240234, - "speaker": 0, - "punctuated_word": "of", - "language": null - }, - { - "word": "the", - "start": 26.609999, - "end": 26.77, - "confidence": 0.9741211, - "speaker": 0, - "punctuated_word": "the", - "language": null - } - ], - "confidence": 0.85839844, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 27.3, - "duration": 1.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "like, skills", - "words": [ - { - "word": "like", - "start": 27.3, - "end": 27.779999, - "confidence": 0.78466797, - "speaker": 0, - "punctuated_word": "like,", - "language": null - }, - { - "word": "skills", - "start": 27.779999, - "end": 28.019999, - "confidence": 0.99902344, - "speaker": 0, - "punctuated_word": "skills", - "language": null - } - ], - "confidence": 0.99902344, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 27.3, - "duration": 2.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "like, skills that you should really", - "words": [ - { - "word": "like", - "start": 27.38, - "end": 27.779999, - "confidence": 0.8913574, - "speaker": 0, - "punctuated_word": "like,", - "language": null - }, - { - "word": "skills", - "start": 27.779999, - "end": 28.259998, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "skills", - "language": null - }, - { - "word": "that", - "start": 28.259998, - "end": 28.5, - "confidence": 0.9892578, - "speaker": 0, - "punctuated_word": "that", - "language": null - }, - { - "word": "you", - "start": 28.5, - "end": 28.66, - "confidence": 0.9970703, - "speaker": 0, - "punctuated_word": "you", - "language": null - }, - { - "word": "should", - "start": 28.66, - "end": 28.9, - "confidence": 0.9970703, - "speaker": 0, - "punctuated_word": "should", - "language": null - }, - { - "word": "really", - "start": 28.9, - "end": 29.06, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "really", - "language": null - } - ], - "confidence": 0.9970703, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 27.3, - "duration": 2.1000004, - "is_final": true, - "speech_final": true, - "from_finalize": true, - "channel": { - "alternatives": [ - { - "transcript": "like skills that you should really", - "words": [ - { - "word": "like", - "start": 27.3, - "end": 27.619999, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "like", - "language": null - }, - { - "word": "skills", - "start": 27.619999, - "end": 28.259998, - "confidence": 0.5439453, - "speaker": 0, - "punctuated_word": "skills", - "language": null - }, - { - "word": "that", - "start": 28.259998, - "end": 28.5, - "confidence": 0.97998047, - "speaker": 0, - "punctuated_word": "that", - "language": null - }, - { - "word": "you", - "start": 28.5, - "end": 28.66, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "you", - "language": null - }, - { - "word": "should", - "start": 28.66, - "end": 28.9, - "confidence": 0.99609375, - "speaker": 0, - "punctuated_word": "should", - "language": null - }, - { - "word": "really", - "start": 28.9, - "end": 29.06, - "confidence": 1.0, - "speaker": 0, - "punctuated_word": "really", - "language": null - } - ], - "confidence": 0.99609375, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bd1f9723-50fd-4c5b-95af-4491e460a4b8", - "model_info": { - "name": "general-nova-3", - "version": "2025-04-17.21547", - "arch": "nova-3" - }, - "model_uuid": "40bd3654-e622-47c4-a111-63a61b23bfe8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - } -] diff --git a/crates/transcript/src/accumulator/fixtures/soniox_1.json b/crates/transcript/src/accumulator/fixtures/soniox_1.json deleted file mode 100644 index 468140bd83..0000000000 --- a/crates/transcript/src/accumulator/fixtures/soniox_1.json +++ /dev/null @@ -1,21092 +0,0 @@ -[ - { - "type": "Results", - "start": 3.6, - "duration": 0.06000000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "May", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c1d709e5-b666-4599-a492-31bdb67b02ec", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6bcedc82-b849-45be-83bf-588a35de820d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 0.17999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1b0e33b4-60a7-44e5-af5a-c1bd633f5790", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2b67b9f6-6ecd-4b8b-93ff-6d1273577f79", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 0.2999999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a1852e42-9dc6-4e2b-8533-90fb86d2678e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "53b6b602-2ec0-42b0-b008-51c816eaf231", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 0.4199999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "71d1944b-9cab-48ca-a711-475e61d21173", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6e91a11b-cccb-4e79-aa92-32234981d797", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 0.7200000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is m", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "92090644-7498-42ab-90b9-4f0296a073cc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4a0b7cb0-93c0-4f5f-bb37-59ba9c532bad", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.02, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me,", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "633d4eca-9008-42b8-898c-f8bb2b44da9c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fe3e1b73-c991-4841-9cbe-1d0b66a97d3e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.1999999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, u", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8ccf5303-ef85-4bb7-aee8-d65211335ae7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "98d5c8ba-e020-4384-9f89-52fd2f6d22e9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.2600000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh,", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ad2173d1-26a9-4216-9af0-7a07f5c710c4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b804e47d-e882-48e3-9f0a-9c52ae379f94", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.3800000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, tal", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2fb9a675-e4f6-46f7-b56d-fbcd647ace01", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6bf07abf-4599-4b7d-a22e-b86288c75672", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.4999999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talk", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f7826771-c084-4965-a026-7b37407ef6bf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "09fec794-ca77-4d4e-84b0-d589facab20e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.6199999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "31aec28a-3fdd-4857-8d67-53c58b6d4cb0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "16396584-25e2-4c3a-9699-35ef09402b0c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.8000000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7bca1aa4-4947-4c8c-94bd-8027c7421726", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fd106e72-ec71-498f-b1c0-6d0a9957c5d3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.98, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ff2cae54-5714-4d03-bad2-e621e86f4a51", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "650b37fb-51ee-4df8-b92b-cef7b8b2455c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 2.1599999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the aud", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ec5e938e-c9bb-4dbe-a712-3575a7a70e65", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c28127b1-f022-4589-a9e4-6df80875a8f7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 2.28, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audien", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c88ff76e-0221-4914-bd6e-1f23d29a9c33", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ce9449c2-c10d-40d3-bbc7-a242dd6fa582", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 2.52, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6e9ec700-9879-417c-b9f8-03d4453d7d69", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "518ef3ef-53db-4114-95fa-b7368ba0e7ad", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 2.64, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a l", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fb4955d7-8a12-4253-a489-19c52aa7b6c4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "99e8b3d8-c582-405e-8a1f-df5227208432", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 2.7600000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ffddb8b8-1deb-4cf8-a303-cec7d777f745", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "915f683e-2b4b-495b-a990-beaecbc01891", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 2.8800000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little b", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fade8af8-2a39-4057-b55d-912de7a0b861", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3794f947-c8de-45e3-9bda-c1959d255c43", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 2.9999999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, '", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1ab05b78-682f-40fa-82c8-083883cb59c5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "70837620-61c8-41a1-8ac1-b81f6f382c63", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 3.1199999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'ca", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a84500e5-989d-4b22-a84d-0c32cfddbe6d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "617cd587-3fe8-4503-bc8b-e297ab4661b4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 3.2399999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "044e5862-21c6-4444-a1da-9e7f6d97be92", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f2b7da46-95bd-4bce-b725-c465a5840b1c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 3.4199999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3d77b0fd-f44f-42b0-94d3-70e6b39fb67e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "349562e7-b302-4a9c-9418-328e6d568e42", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 3.72, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2e3da729-1c8a-4b2b-89e2-5664342e1842", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2ffa2cc3-3fd5-46ef-9507-b4c716a58b93", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 3.9599999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these d", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7bd9c969-231e-4db8-a57a-764c77e22981", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "345cf9a0-0400-4ea7-9b3d-ec4aec16bbd1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 4.199999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "13f64306-dedf-41b7-be6f-d83fa8089491", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c8ab87bd-05ff-45ae-aaec-3c4e331a77e0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 4.860000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9b89a878-500b-4497-965c-e94f17769fa0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "04de643c-d302-434f-a946-f7c251f3dabd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 5.1, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5d7074fa-58a7-4f21-b8de-6275c171cfc3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "126c3949-7a3b-48e8-8662-a7401f712402", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 5.4, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many m", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "41792a2d-e7d7-4f8f-a840-f84d42c0fc7d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e119c8e5-5117-4ec4-a593-b20d73f0f4f6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 5.52, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many mess", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dec61fed-ccee-41cb-8c31-24a136c7c863", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eba0ce2d-f591-491b-9e2e-f84977f67c38", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 5.76, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many messag", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "be4d4d72-0e00-4d12-8913-d58f8d306238", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "46c42346-e281-483e-a33f-a88def1bfcc4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 5.880000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many messages", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ages", - "start": 9.42, - "end": 9.48, - "confidence": 0.731, - "speaker": 1, - "punctuated_word": "ages", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f5a7989c-8784-4b1f-b81d-11954632e680", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7c401275-7994-4f1e-b031-bca8aed3b48a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 5.880000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the audience a little bit, 'cause I get these days so many messages,", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0255c123-677b-492b-af7d-18c78ecb272b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "47a0f710-d825-42ce-83fb-78699c09e51f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 3.6, - "duration": 1.98, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "Maybe this is me, uh, talking to the", - "words": [ - { - "word": "May", - "start": 3.6, - "end": 3.66, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "May", - "language": null - }, - { - "word": "be", - "start": 3.72, - "end": 3.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "be", - "language": null - }, - { - "word": " this", - "start": 3.84, - "end": 3.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 3.96, - "end": 4.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " m", - "start": 4.26, - "end": 4.32, - "confidence": 0.852, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "e,", - "start": 4.56, - "end": 4.62, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " u", - "start": 4.74, - "end": 4.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 4.8, - "end": 4.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " tal", - "start": 4.92, - "end": 4.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " tal", - "language": null - }, - { - "word": "k", - "start": 5.04, - "end": 5.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "k", - "language": null - }, - { - "word": "ing", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ing", - "language": null - }, - { - "word": " to", - "start": 5.34, - "end": 5.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": " the", - "start": 5.52, - "end": 5.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e68409d5-be47-49a4-8df4-ad10c9416ed2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c44fa5fd-6c12-426b-ae68-6544fef0cb45", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 3.7800000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages,", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "25abff95-9a95-4712-963a-ceacbb5e6c0a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c92cf4b1-737e-486f-adb7-7cf7ddbc7726", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 4.56, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, adv", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a51098cd-be51-4f38-87f7-6bf02589a4b9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a72ebb3d-c98e-4861-b7a8-c970f745e6d4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 4.8, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, advice", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b4be0604-5c29-4e49-bb3a-f1837edb090c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6c9c07b6-467c-45bd-870d-19b719046405", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 4.9799999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, advice on", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "087803fa-16c3-4227-8421-9369ef02a7d1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f1d0d01a-a217-4e17-b392-0d6bdb04db3c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 5.28, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dfe5b051-d37f-425e-9131-3e5f1dff2b32", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0c2ae92c-15e8-4fb1-82df-0e76caf9a88d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 5.3999999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7c4acd17-f7cc-4c0a-8f27-3f43577e195a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7c37a23d-208f-42ad-a317-d5397b0aead0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 5.579999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to,", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "770e507b-56b9-45a8-961f-f66254ab915e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b098a587-25aa-4629-b1a0-a69b2182201d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 5.7, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to, lik", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4756226a-2671-469e-bfef-c05d016cd3e5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a324a45e-8985-4cc3-b0dd-564b23576900", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 5.819999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these days so many messages, advice on how to, like,", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - }, - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e5f63170-14ec-411a-8bb6-2f556f911745", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bd33911f-8548-4a51-84ef-71f07e4a7e17", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.7, - "duration": 1.8599999999999994, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " audience a little bit, 'cause I get these d", - "words": [ - { - "word": " aud", - "start": 5.7, - "end": 5.76, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " aud", - "language": null - }, - { - "word": "ien", - "start": 5.82, - "end": 5.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ien", - "language": null - }, - { - "word": "ce", - "start": 6.06, - "end": 6.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ce", - "language": null - }, - { - "word": " a", - "start": 6.12, - "end": 6.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " l", - "start": 6.18, - "end": 6.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " l", - "language": null - }, - { - "word": "ittle", - "start": 6.3, - "end": 6.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ittle", - "language": null - }, - { - "word": " b", - "start": 6.42, - "end": 6.48, - "confidence": 0.798, - "speaker": 1, - "punctuated_word": " b", - "language": null - }, - { - "word": "it,", - "start": 6.48, - "end": 6.54, - "confidence": 0.924, - "speaker": 1, - "punctuated_word": "it,", - "language": null - }, - { - "word": " '", - "start": 6.54, - "end": 6.6, - "confidence": 0.706, - "speaker": 1, - "punctuated_word": " '", - "language": null - }, - { - "word": "ca", - "start": 6.66, - "end": 6.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ca", - "language": null - }, - { - "word": "use", - "start": 6.72, - "end": 6.78, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "use", - "language": null - }, - { - "word": " I", - "start": 6.78, - "end": 6.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " get", - "start": 6.96, - "end": 7.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " get", - "language": null - }, - { - "word": " these", - "start": 7.26, - "end": 7.32, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " these", - "language": null - }, - { - "word": " d", - "start": 7.5, - "end": 7.56, - "confidence": 0.817, - "speaker": 1, - "punctuated_word": " d", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9a8cd096-fae0-4ab1-b5b3-b3086cd1f032", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fdc9446c-1b95-4fbb-b315-27f7a20e3495", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 3.7799999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like,", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "564a0107-3f64-4920-b5ca-fdb36f5f32e5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e9b112b4-3246-4271-89d6-601587e0ecb5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 4.799999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, le", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1afa8c08-1fd4-48cb-b1c2-5c39777c4f97", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d0df7a60-0eaf-4d3b-ace1-0f0585601658", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 4.98, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, learn", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - }, - { - "word": "arn", - "start": 12.66, - "end": 12.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "arn", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8836abba-8211-4e44-a7d2-149a7bd685f8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "453fe714-c5f5-497f-af12-5300564c6b67", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 5.220000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, learn st", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - }, - { - "word": "arn", - "start": 12.66, - "end": 12.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "arn", - "language": null - }, - { - "word": " st", - "start": 12.9, - "end": 12.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " st", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "03f60f9a-c7d9-4c70-b8ae-77ef0c6e4eba", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5b39ee35-5796-4f06-b42b-4b71b9fac5f5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 5.34, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, learn stu", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - }, - { - "word": "arn", - "start": 12.66, - "end": 12.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "arn", - "language": null - }, - { - "word": " st", - "start": 12.9, - "end": 12.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " st", - "language": null - }, - { - "word": "u", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "u", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "98b44bd7-1982-4249-a733-0dc2e251d973", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "28caff13-dc57-44fa-9e34-05acfbe1f6eb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 5.4, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, learn stuff", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - }, - { - "word": "arn", - "start": 12.66, - "end": 12.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "arn", - "language": null - }, - { - "word": " st", - "start": 12.9, - "end": 12.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " st", - "language": null - }, - { - "word": "u", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "u", - "language": null - }, - { - "word": "ff", - "start": 13.08, - "end": 13.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ff", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cce7beb8-57b8-49a0-911d-f95fba836fc0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a101e43c-ae3d-44c8-9ab6-6cd448ebbfdf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 5.699999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, learn stuff,", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - }, - { - "word": "arn", - "start": 12.66, - "end": 12.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "arn", - "language": null - }, - { - "word": " st", - "start": 12.9, - "end": 12.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " st", - "language": null - }, - { - "word": "u", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "u", - "language": null - }, - { - "word": "ff", - "start": 13.08, - "end": 13.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ff", - "language": null - }, - { - "word": ",", - "start": 13.38, - "end": 13.44, - "confidence": 0.881, - "speaker": 1, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "51dfa267-e9eb-42b6-a5a0-873940e2f084", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0571b07d-d206-4584-ba48-c1bb134d3870", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 5.82, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, learn stuff, ok", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - }, - { - "word": "arn", - "start": 12.66, - "end": 12.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "arn", - "language": null - }, - { - "word": " st", - "start": 12.9, - "end": 12.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " st", - "language": null - }, - { - "word": "u", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "u", - "language": null - }, - { - "word": "ff", - "start": 13.08, - "end": 13.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ff", - "language": null - }, - { - "word": ",", - "start": 13.38, - "end": 13.44, - "confidence": 0.881, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " ok", - "start": 13.5, - "end": 13.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " ok", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f9ad2fed-aa85-4c55-a415-8ae1c3b3acbd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b90a2633-0c34-4739-b01f-47f961c00e5f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.74, - "duration": 6.0600000000000005, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "ays so many messages, advice on how to, like, learn stuff, okay?", - "words": [ - { - "word": "ays", - "start": 7.74, - "end": 7.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ays", - "language": null - }, - { - "word": " so", - "start": 8.4, - "end": 8.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " so", - "language": null - }, - { - "word": " many", - "start": 8.64, - "end": 8.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " many", - "language": null - }, - { - "word": " m", - "start": 8.94, - "end": 9.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " m", - "language": null - }, - { - "word": "ess", - "start": 9.06, - "end": 9.12, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ess", - "language": null - }, - { - "word": "ag", - "start": 9.3, - "end": 9.36, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "ag", - "language": null - }, - { - "word": "es,", - "start": 9.42, - "end": 9.48, - "confidence": 0.531, - "speaker": 1, - "punctuated_word": "es,", - "language": null - }, - { - "word": " adv", - "start": 10.2, - "end": 10.26, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": " adv", - "language": null - }, - { - "word": "ice", - "start": 10.44, - "end": 10.5, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "ice", - "language": null - }, - { - "word": " on", - "start": 10.62, - "end": 10.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " on", - "language": null - }, - { - "word": " how", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " how", - "language": null - }, - { - "word": " to", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " to", - "language": null - }, - { - "word": ",", - "start": 11.22, - "end": 11.28, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " lik", - "start": 11.34, - "end": 11.4, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 11.46, - "end": 11.52, - "confidence": 0.991, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " le", - "start": 12.48, - "end": 12.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " le", - "language": null - }, - { - "word": "arn", - "start": 12.66, - "end": 12.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "arn", - "language": null - }, - { - "word": " st", - "start": 12.9, - "end": 12.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " st", - "language": null - }, - { - "word": "u", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "u", - "language": null - }, - { - "word": "ff", - "start": 13.08, - "end": 13.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ff", - "language": null - }, - { - "word": ",", - "start": 13.38, - "end": 13.44, - "confidence": 0.881, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " ok", - "start": 13.5, - "end": 13.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " ok", - "language": null - }, - { - "word": "ay", - "start": 13.68, - "end": 13.74, - "confidence": 0.976, - "speaker": 1, - "punctuated_word": "ay", - "language": null - }, - { - "word": "?", - "start": 13.74, - "end": 13.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "?", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bf6dc63f-00c6-4711-8e5d-cf794065848c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7d200f4c-97ae-4909-bfd7-11daf313492e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 0.0600000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "52262c57-9ae5-4901-b937-85c9202ea170", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "45040585-0e4e-4520-b14f-869f246ec48d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 0.4200000000000017, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "76c4ec32-3624-4bd8-997a-f69f06fe5727", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c77f8b56-fe66-47fb-a0b7-869df75ac085", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 0.8399999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—th", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "aaad14b3-8ee6-4d99-bc11-2875354ddfd8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "34fd70cc-3056-478d-a690-4647b295c0ed", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 0.9600000000000009, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this,", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7959b827-5d96-4681-a532-0b3394b0b913", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f5803d29-3a76-41c3-aa7e-cdc17a5a2c1d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 1.1400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, th", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "748500f8-0bfc-4cb0-8288-60cc5d9d8e25", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a3abdede-f53d-4c04-a2fd-479562892605", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 1.1999999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this,", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c380e744-e5f9-4bee-80de-79bf41edd005", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "dd70ad1b-a8cb-4306-8619-527d4c3cfbd5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 1.3200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f5df04b6-c1ab-40b2-837a-5e249295999a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ff664b43-4b9c-4985-9ad4-e5ee6a51af35", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 1.4400000000000013, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "64b4ad8b-2b7c-4d46-90d6-f5e0e6501d51", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cb217b7f-8488-4d8d-8975-40c872465624", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 1.5600000000000023, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "94de75a1-c37e-4706-99e7-deff787b6721", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "314607d8-ec2d-44f5-8cb9-b46b91dd1c74", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 1.9200000000000017, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c07f2ac4-c0a4-47d1-bd12-7b8199e021a7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fc7e794f-73c1-481a-bbd5-b200daa8cf83", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 2.16, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8f622603-9ddd-48ee-8e0f-b07bc2588124", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "296bcba1-334e-4a1a-b5ff-a4b21608bc18", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 2.5199999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being me", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2e7877f1-216a-4223-8b2d-891db7b6b1a0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f412995c-f495-4c8b-aa89-154b6cfb7935", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 2.6400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean.", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8feeb0a5-c850-40bb-b2a8-f4947951cc55", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9a95d90d-2918-48aa-b7d2-72d8461a9b97", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 2.8200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I th", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "38913d03-4250-4f95-a128-c34ae8aa3b38", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "48ab4e08-13e9-486e-b19e-35c5b0377bcf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 2.8800000000000026, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9abf6197-9c36-4bd6-80be-28ef1ea479ad", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "578af9a7-8038-49a4-87c8-7974a3e8fa28", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 3.0600000000000023, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "edb41aba-765a-4d95-b589-a66eddafcf83", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "be6c4995-9859-4d0a-9fe9-1355ba40b8da", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 3.1799999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this is", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8e71c187-81da-418d-8409-d7125dc62936", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "adafee22-2c96-4b9e-80d0-a92c12f7d82c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 3.3000000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this is qu", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "38b864d0-39eb-44fa-8806-0812575e3af2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d81d8c02-1c5f-4143-897c-b8db8e5f7b21", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 3.3599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this is quite", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c1169f41-37ff-4cf2-913b-9e76e264e785", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3def70d4-fc49-447a-8856-e6340dc6f5ee", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 3.6000000000000014, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this is quite a", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "89d5bac8-8603-4a48-8597-3f2af3786b69", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "540ab8d5-e7ef-41c6-9216-9fcb5166b1ab", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 3.7200000000000024, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this is quite a prof", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "71e21b15-ec3d-40f7-82ad-982a65dc6a85", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ae24f945-ba7b-4450-bcc1-efe41d232049", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 3.900000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this is quite a profound", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "00af6061-e198-48f0-b5f7-d511b7fbdaaf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e0ccaa61-ca0d-4f14-919c-00208c0d9a90", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 4.260000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My—this, this, this is not me being mean. I think this is quite a profound, actu", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - }, - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "072d1680-15b1-4d4b-9797-ab3bee8f6ec6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bf6a7b54-73a6-4d05-ae90-1426307f2963", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.54, - "duration": 0.0600000000000005, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " My", - "words": [ - { - "word": " My", - "start": 15.54, - "end": 15.6, - "confidence": 0.797, - "speaker": 1, - "punctuated_word": " My", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e3731a54-4663-4103-ab32-2d5428b15e16", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ea663fd6-a484-4a83-b731-3e763f7f2567", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 3.9000000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actu", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6e303099-4b89-45fb-9b2e-6acbc2cc95ba", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ef28d357-551c-42e5-9357-4bdd391dbc6b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 4.200000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actuall", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "75075dcb-5ecb-4b62-bbf0-9a4f2a85bae9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "11f29da4-3f52-4290-827b-c03110ea85ae", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 4.3199999999999985, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually,", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2de8fd3c-b275-4b07-8b2c-b98c92cc59a4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eb557e43-db95-4b3d-9157-40d764537134", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 4.92, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1e725b93-e701-4107-a3af-b1a2d27fd823", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eb6e148f-a717-4c3f-ae57-5687c8776a26", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 5.339999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is y", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " y", - "start": 21.18, - "end": 21.24, - "confidence": 0.993, - "speaker": 1, - "punctuated_word": " y", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5ad67ba2-b0f4-4efc-9888-3918fe6fd6c9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "828338a7-a76a-42ac-927d-89df0c44d596", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 5.459999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is you", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " y", - "start": 21.18, - "end": 21.24, - "confidence": 0.993, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 21.3, - "end": 21.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ade92ba0-6e35-4100-91a8-9779a40ede12", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b5ae58f1-ed0d-4027-bdc5-744fc1a2859d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 5.58, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is you should", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " y", - "start": 21.18, - "end": 21.24, - "confidence": 0.993, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 21.3, - "end": 21.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 21.36, - "end": 21.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 21.42, - "end": 21.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d7fa9376-459e-415b-b97a-5d813038fe87", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "578b709e-ca2f-411e-858d-b82e421686d1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 5.880000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being mean. I think this is quite a profound, actually, is you should Google", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - }, - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " y", - "start": 21.18, - "end": 21.24, - "confidence": 0.993, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 21.3, - "end": 21.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 21.36, - "end": 21.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 21.42, - "end": 21.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " Google", - "start": 21.72, - "end": 21.78, - "confidence": 0.985, - "speaker": 1, - "punctuated_word": " Google", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7121a508-c8a9-43b4-9f29-acde9740be6f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b9e0fb1d-1d41-453c-a3e3-9c75a4ec2708", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 15.9, - "duration": 1.799999999999999, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "—this, this, this is not me being", - "words": [ - { - "word": "—", - "start": 15.9, - "end": 15.96, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": "—", - "language": null - }, - { - "word": "th", - "start": 16.32, - "end": 16.38, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "th", - "language": null - }, - { - "word": "is,", - "start": 16.44, - "end": 16.5, - "confidence": 0.952, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " th", - "start": 16.62, - "end": 16.68, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "is,", - "start": 16.68, - "end": 16.74, - "confidence": 0.896, - "speaker": 1, - "punctuated_word": "is,", - "language": null - }, - { - "word": " this", - "start": 16.8, - "end": 16.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 16.92, - "end": 16.98, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " not", - "start": 17.04, - "end": 17.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " not", - "language": null - }, - { - "word": " me", - "start": 17.4, - "end": 17.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": " being", - "start": 17.64, - "end": 17.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " being", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a2925387-f232-4d24-b0fe-0b9fae930ac0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a5203f66-25bc-4c21-a84e-9a75db8d7c33", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.0, - "duration": 3.780000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " mean. I think this is quite a profound, actually, is you should Google", - "words": [ - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " y", - "start": 21.18, - "end": 21.24, - "confidence": 0.993, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 21.3, - "end": 21.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 21.36, - "end": 21.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 21.42, - "end": 21.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " Google", - "start": 21.72, - "end": 21.78, - "confidence": 0.985, - "speaker": 1, - "punctuated_word": " Google", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e08811dd-12f2-464a-865e-f6f55d456e98", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b8577d84-a000-4339-aea3-7a16129b414c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.0, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " mean. I think this is quite a profound, actually, is you should Google it", - "words": [ - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " y", - "start": 21.18, - "end": 21.24, - "confidence": 0.993, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 21.3, - "end": 21.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 21.36, - "end": 21.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 21.42, - "end": 21.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " Google", - "start": 21.72, - "end": 21.78, - "confidence": 0.985, - "speaker": 1, - "punctuated_word": " Google", - "language": null - }, - { - "word": " it", - "start": 22.02, - "end": 22.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " it", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8b9a0e23-47da-4d3b-ab3a-54c9e7399a6a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "21418256-c4ee-4e53-ac0d-f2fb8adf6600", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.0, - "duration": 4.379999999999999, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " mean. I think this is quite a profound, actually, is you should Google it.", - "words": [ - { - "word": " me", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " me", - "language": null - }, - { - "word": "an.", - "start": 18.12, - "end": 18.18, - "confidence": 0.85, - "speaker": 1, - "punctuated_word": "an.", - "language": null - }, - { - "word": " I", - "start": 18.24, - "end": 18.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " I", - "language": null - }, - { - "word": " th", - "start": 18.3, - "end": 18.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " th", - "language": null - }, - { - "word": "ink", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ink", - "language": null - }, - { - "word": " this", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " this", - "language": null - }, - { - "word": " is", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " qu", - "start": 18.78, - "end": 18.84, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " qu", - "language": null - }, - { - "word": "ite", - "start": 18.84, - "end": 18.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ite", - "language": null - }, - { - "word": " a", - "start": 19.08, - "end": 19.14, - "confidence": 0.972, - "speaker": 1, - "punctuated_word": " a", - "language": null - }, - { - "word": " prof", - "start": 19.2, - "end": 19.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " prof", - "language": null - }, - { - "word": "ound", - "start": 19.38, - "end": 19.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ound", - "language": null - }, - { - "word": ",", - "start": 19.68, - "end": 19.74, - "confidence": 0.986, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " actu", - "start": 19.74, - "end": 19.8, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " actu", - "language": null - }, - { - "word": "all", - "start": 20.04, - "end": 20.1, - "confidence": 0.98, - "speaker": 1, - "punctuated_word": "all", - "language": null - }, - { - "word": "y,", - "start": 20.16, - "end": 20.22, - "confidence": 0.651, - "speaker": 1, - "punctuated_word": "y,", - "language": null - }, - { - "word": " is", - "start": 20.76, - "end": 20.82, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " is", - "language": null - }, - { - "word": " y", - "start": 21.18, - "end": 21.24, - "confidence": 0.993, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 21.3, - "end": 21.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 21.36, - "end": 21.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 21.42, - "end": 21.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " Google", - "start": 21.72, - "end": 21.78, - "confidence": 0.985, - "speaker": 1, - "punctuated_word": " Google", - "language": null - }, - { - "word": " it", - "start": 22.02, - "end": 22.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " it", - "language": null - }, - { - "word": ".", - "start": 22.32, - "end": 22.38, - "confidence": 0.729, - "speaker": 1, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fdc3cc12-3f06-4f12-bb21-b3b00d02a8bc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "56a0d042-a5f2-4c52-b999-92b85b9bbfb2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.98, - "duration": 0.05999999999999872, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " O", - "words": [ - { - "word": " O", - "start": 22.98, - "end": 23.04, - "confidence": 0.592, - "speaker": 2, - "punctuated_word": " O", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "14bf7194-c13a-4ef5-bb15-aa06d35f8a08", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6b796ebf-4cb5-4864-86a8-170b7bd8cd32", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.98, - "duration": 0.120000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Oh,", - "words": [ - { - "word": " O", - "start": 22.98, - "end": 23.04, - "confidence": 0.592, - "speaker": 2, - "punctuated_word": " O", - "language": null - }, - { - "word": "h,", - "start": 23.04, - "end": 23.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "h,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "08ef3cf1-6112-44ec-bcb6-1a9718f8007b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ebd7c0ab-983e-42d6-afaf-050eed1d94cf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.98, - "duration": 0.23999999999999844, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Oh, ye", - "words": [ - { - "word": " O", - "start": 22.98, - "end": 23.04, - "confidence": 0.592, - "speaker": 2, - "punctuated_word": " O", - "language": null - }, - { - "word": "h,", - "start": 23.04, - "end": 23.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "h,", - "language": null - }, - { - "word": " ye", - "start": 23.16, - "end": 23.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " ye", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c4655f7c-cde3-4358-bc37-e72c12023be1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "19229218-9c37-4634-bea2-eb04e6d15752", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.98, - "duration": 0.35999999999999943, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Oh, yeah.", - "words": [ - { - "word": " O", - "start": 22.98, - "end": 23.04, - "confidence": 0.592, - "speaker": 2, - "punctuated_word": " O", - "language": null - }, - { - "word": "h,", - "start": 23.04, - "end": 23.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "h,", - "language": null - }, - { - "word": " ye", - "start": 23.16, - "end": 23.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " ye", - "language": null - }, - { - "word": "ah.", - "start": 23.28, - "end": 23.34, - "confidence": 0.964, - "speaker": 2, - "punctuated_word": "ah.", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "60c58b79-e491-40ca-9946-f2c2e188d07a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e9a425fd-c2af-440b-ae31-e675c282854e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 0.11999999999999744, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Lik", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1da5430b-9861-4f4c-b1e3-50555f56d831", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "09f662c1-8151-41b3-bd37-4917a0af2979", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 0.23999999999999844, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like,", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "deea921b-1bca-4449-be1c-ed92164082b5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b089c71d-77a2-4231-8575-43d6dea905a4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 0.23999999999999844, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like,", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7b731fb8-1a8d-4896-a6d6-b897b420cfdf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a24d458f-26d4-48d3-9e53-7081e9b20ea8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 2.2799999999999976, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6d4b63d3-45aa-4f03-8183-3911a2f18ce9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fcb459c0-f1a7-49d7-b9bf-5c4da4bcd2b5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 2.34, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "37f14157-1289-43a0-934c-d49e44f1cce1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ce77cda5-15ea-4328-a92c-fb36fef7191b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 2.4599999999999973, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "aca59d6e-1ba4-42ee-a433-94342c8b5e03", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bf53b41e-58ec-4b47-90d3-9d1a8111e943", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 2.8200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the,", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d9690c96-9a36-48e6-b579-eda3c6ea6b1b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6b0f091e-3456-49be-b568-27debfc50d7c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 2.9399999999999977, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, u", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "96db9710-83ce-4c83-9248-58447a1fd485", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d5a3c1a4-6f25-4707-9410-148367232a70", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 3.0599999999999987, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh,", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4669c719-a3a6-4138-b7e1-13d5b7904316", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "82e68c4c-f6fe-47ad-b1a3-0ddfa9d5f61b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 3.3599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, lik", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6b6593a3-e446-408b-8473-a44c9eeb0111", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1ce01f3d-3e43-4913-a247-ab6258747c4c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 3.4800000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like,", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6f137225-0dc4-49f9-a21e-e866265879eb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2db83da0-6d11-4d56-8445-5d2f5bfad199", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 3.599999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, sk", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cbf497a5-b4fa-4d73-8ba0-8e6a5edb0885", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b99953c7-5338-40ab-bfc8-35778923bc95", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skill", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "10213735-b7b4-428b-a1ef-6932853da8b9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cf7ad5db-137d-4c65-a066-53de003ffdd5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 4.02, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3337f83c-2ed9-4983-bd33-741a40857e61", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d532958a-445c-409c-93b4-1369b89f2434", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "33e0094e-c3e9-43f6-8bad-a7581048f543", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0d42d720-1a1b-49db-b676-fe772d603fcc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that y", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1769ff5b-069a-4565-8d80-518dc98b318a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "43671ccc-6b5b-493b-9f65-0108a6111422", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 4.439999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that you", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 28.5, - "end": 28.56, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "43e6f912-7bea-4776-8409-87126f65202d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "382ffc5d-4ecc-4fa7-8a65-b22e553af691", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 4.559999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that you sho", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 28.5, - "end": 28.56, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 28.62, - "end": 28.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9abbc9d0-ca6b-4faa-a928-8a01d8f17b35", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "391d0a5b-595e-47d5-84ef-ac817936d7c1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 4.619999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that you should", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 28.5, - "end": 28.56, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 28.62, - "end": 28.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 28.68, - "end": 28.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "15ed4e75-de45-4a49-a162-5e6f856a8cef", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "75edde83-6349-429b-8498-4dd3f05b4a02", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 4.800000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that you should really", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 28.5, - "end": 28.56, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 28.62, - "end": 28.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 28.68, - "end": 28.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " re", - "start": 28.8, - "end": 28.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " re", - "language": null - }, - { - "word": "ally", - "start": 28.86, - "end": 28.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ally", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "77b424c8-8a34-47fb-9244-2cae4614b9c9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9c447bff-4e99-42f3-95a6-5c7155758a64", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 5.099999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that you should really ac", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 28.5, - "end": 28.56, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 28.62, - "end": 28.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 28.68, - "end": 28.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " re", - "start": 28.8, - "end": 28.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " re", - "language": null - }, - { - "word": "ally", - "start": 28.86, - "end": 28.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ally", - "language": null - }, - { - "word": " ac", - "start": 29.16, - "end": 29.22, - "confidence": 0.976, - "speaker": 1, - "punctuated_word": " ac", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a8e82a78-2ced-4c07-a164-9a580b4801ab", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "11cf3cf9-2cf2-41fd-9313-ba930f9e5519", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that you should really acqu", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 28.5, - "end": 28.56, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 28.62, - "end": 28.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 28.68, - "end": 28.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " re", - "start": 28.8, - "end": 28.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " re", - "language": null - }, - { - "word": "ally", - "start": 28.86, - "end": 28.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ally", - "language": null - }, - { - "word": " ac", - "start": 29.16, - "end": 29.22, - "confidence": 0.976, - "speaker": 1, - "punctuated_word": " ac", - "language": null - }, - { - "word": "qu", - "start": 29.28, - "end": 29.34, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "qu", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "20589790-21d8-4a56-9255-d3694af43915", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "748b261d-9db2-49fe-be38-49a6b2f73be6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.12, - "duration": 5.399999999999999, - "is_final": true, - "speech_final": true, - "from_finalize": true, - "channel": { - "alternatives": [ - { - "transcript": " Like, one of the, uh, like, skills that you should really acquire.", - "words": [ - { - "word": " L", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " L", - "language": null - }, - { - "word": "ik", - "start": 24.18, - "end": 24.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ik", - "language": null - }, - { - "word": "e,", - "start": 24.3, - "end": 24.36, - "confidence": 0.963, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " one", - "start": 26.34, - "end": 26.4, - "confidence": 0.884, - "speaker": 1, - "punctuated_word": " one", - "language": null - }, - { - "word": " of", - "start": 26.4, - "end": 26.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " of", - "language": null - }, - { - "word": " the", - "start": 26.52, - "end": 26.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " the", - "language": null - }, - { - "word": ",", - "start": 26.88, - "end": 26.94, - "confidence": 0.989, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " u", - "start": 27.0, - "end": 27.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " u", - "language": null - }, - { - "word": "h,", - "start": 27.12, - "end": 27.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "h,", - "language": null - }, - { - "word": " lik", - "start": 27.42, - "end": 27.48, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " lik", - "language": null - }, - { - "word": "e,", - "start": 27.54, - "end": 27.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "e,", - "language": null - }, - { - "word": " sk", - "start": 27.66, - "end": 27.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sk", - "language": null - }, - { - "word": "ill", - "start": 27.78, - "end": 27.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ill", - "language": null - }, - { - "word": "s", - "start": 28.08, - "end": 28.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "s", - "language": null - }, - { - "word": " that", - "start": 28.2, - "end": 28.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " that", - "language": null - }, - { - "word": " y", - "start": 28.38, - "end": 28.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " y", - "language": null - }, - { - "word": "ou", - "start": 28.5, - "end": 28.56, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ou", - "language": null - }, - { - "word": " sho", - "start": 28.62, - "end": 28.68, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " sho", - "language": null - }, - { - "word": "uld", - "start": 28.68, - "end": 28.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "uld", - "language": null - }, - { - "word": " re", - "start": 28.8, - "end": 28.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " re", - "language": null - }, - { - "word": "ally", - "start": 28.86, - "end": 28.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "ally", - "language": null - }, - { - "word": " ac", - "start": 29.16, - "end": 29.22, - "confidence": 0.976, - "speaker": 1, - "punctuated_word": " ac", - "language": null - }, - { - "word": "qu", - "start": 29.28, - "end": 29.34, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "qu", - "language": null - }, - { - "word": "ire", - "start": 29.4, - "end": 29.46, - "confidence": 0.946, - "speaker": 1, - "punctuated_word": "ire", - "language": null - }, - { - "word": ".", - "start": 29.46, - "end": 29.52, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4d43ec98-9eda-4ed6-9bec-7ebd72f18e70", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2c12d44d-b2fa-4c31-a370-b2a73200b49f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - } -] diff --git a/crates/transcript/src/accumulator/fixtures/soniox_2.json b/crates/transcript/src/accumulator/fixtures/soniox_2.json deleted file mode 100644 index 20c594547b..0000000000 --- a/crates/transcript/src/accumulator/fixtures/soniox_2.json +++ /dev/null @@ -1,99368 +0,0 @@ -[ - { - "type": "Results", - "start": 0.36, - "duration": 0.06, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "502138e8-211d-4265-af2c-d20f87e5f51f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "270d8d10-01b3-42c1-b241-9e354344540d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 0.24, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "838b41e9-38ff-46f5-9a71-9ce518e63356", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4b2b35b7-6113-4d47-92f3-0e150ed0a57c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 0.48, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b1c9a009-449b-48b4-8402-acc8b984b049", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8d5f391d-0563-4cf0-88ef-82a86fe5e899", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 0.6, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "12b84daa-efa1-4b71-a424-8f032f4fee61", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "44e841ba-2a8b-4f4c-8fbd-1881ac1d563e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 0.7799999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 익", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": "익", - "start": 1.08, - "end": 1.14, - "confidence": 0.87, - "speaker": 1, - "punctuated_word": "익", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "71ca6f3c-1053-49d3-9dc9-f938c501f71b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e6d733f1-65d5-4e24-9d52-a1b0ce8873c6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 0.9, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "26f96b16-adea-415e-8b1b-b9de0ff90f5b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "833be2c5-c453-40ed-8b30-d2eb7535acd3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 1.02, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3dcb4341-3382-4edf-b841-0dac02b74711", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e0680ce3-13ce-4cf4-b5b0-3ac1d7d58056", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 1.2600000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2a21dc77-030f-4e25-9f40-e6da5801ccfb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cf41f8a5-8b27-436a-9f17-552b73f8ffd7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 1.38, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "aa97b774-3837-44bc-b6eb-257bece355cd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "57572605-a6c8-44e6-992e-c080225337eb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 1.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5acd36c8-99bd-47cd-9a01-3b3de6ae88c1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "62b164a1-c020-4ada-b9af-c5d53f075c67", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 1.6800000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d9228114-108d-400b-bd26-fe3881c91a11", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ba3085b7-46d1-4fdf-8cd9-3df56afe1086", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 1.7400000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3597f7ff-6c0d-4b8a-83a8-32e1c0dee6f9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c241ec35-f350-4fff-988b-dec26d498eba", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 1.8600000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다.", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ce9d4eb8-b8bb-4854-8d36-3555ecc0b592", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ea1ad192-d4fb-4679-ace4-803282b0dd42", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.1, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6ee54ac2-4728-4502-b2f8-b524ab4e24c5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bde45adc-774d-467b-b152-97d403930f42", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.22, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "995774a1-0bc8-4e53-9c1b-27d69e785121", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4c038a79-39a6-468d-b89e-f404f3c00264", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.3400000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7f85b7e6-d6bc-4e7c-a977-3aa095a40318", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "423670b5-8f6f-4cfc-95a9-e9e559809010", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.52, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 2.82, - "end": 2.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c7204355-992a-42c1-86b6-9d60c7740410", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "adc1fe84-a33e-4d3c-b418-6ba83cfc3cb7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.64, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 2.82, - "end": 2.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 2.94, - "end": 3.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1b520ea6-91e7-446f-8f57-2f2ac29f8019", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "13238940-d8ba-4e88-ad6a-8f0cfe2658b1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.7600000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 2.82, - "end": 2.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 2.94, - "end": 3.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 3.06, - "end": 3.12, - "confidence": 0.996, - "speaker": 1, - "punctuated_word": "드", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "37e76e44-aeb5-49c2-a485-286fb3afe9a3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5fb52efa-8362-4545-a1fb-ba6a42c31271", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.8800000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 2.82, - "end": 2.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 2.94, - "end": 3.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 3.06, - "end": 3.12, - "confidence": 0.996, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "릴", - "start": 3.18, - "end": 3.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "릴", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8fefdb0c-06d9-4030-8640-f6398608a6ef", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b7db3333-de1e-4355-9109-9a155df37511", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 2.94, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴까", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 2.82, - "end": 2.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 2.94, - "end": 3.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 3.06, - "end": 3.12, - "confidence": 0.996, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "릴", - "start": 3.18, - "end": 3.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "릴", - "language": null - }, - { - "word": "까", - "start": 3.24, - "end": 3.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "까", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bcfea41c-72a4-4fc7-9291-ffd78c26f93b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a8b32278-a670-43cc-9192-a9b81d489c0b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 3.06, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴까요", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 2.82, - "end": 2.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 2.94, - "end": 3.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 3.06, - "end": 3.12, - "confidence": 0.996, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "릴", - "start": 3.18, - "end": 3.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "릴", - "language": null - }, - { - "word": "까", - "start": 3.24, - "end": 3.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 3.36, - "end": 3.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "50e707c8-486d-454e-a76f-a47e81727234", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c4ba88da-cde1-475a-9abe-ec826c3c9cac", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 0.36, - "duration": 3.18, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "기간 스터디 이민형 상담원입니다. 무엇을 도와드릴까요?", - "words": [ - { - "word": "기", - "start": 0.36, - "end": 0.42, - "confidence": 0.856, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "간", - "start": 0.54, - "end": 0.6, - "confidence": 0.448, - "speaker": 1, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 0.66, - "end": 0.72, - "confidence": 0.891, - "speaker": 1, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 0.78, - "end": 0.84, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 0.9, - "end": 0.96, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "디", - "language": null - }, - { - "word": " 이", - "start": 1.08, - "end": 1.14, - "confidence": 0.346, - "speaker": 1, - "punctuated_word": " 이", - "language": null - }, - { - "word": "민", - "start": 1.2, - "end": 1.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": "민", - "language": null - }, - { - "word": "형", - "start": 1.32, - "end": 1.38, - "confidence": 0.645, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": " 상", - "start": 1.56, - "end": 1.62, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 1.68, - "end": 1.74, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "담", - "language": null - }, - { - "word": "원", - "start": 1.8, - "end": 1.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "원", - "language": null - }, - { - "word": "입", - "start": 1.98, - "end": 2.04, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "입", - "language": null - }, - { - "word": "니", - "start": 2.04, - "end": 2.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 2.16, - "end": 2.22, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 무", - "start": 2.4, - "end": 2.46, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 무", - "language": null - }, - { - "word": "엇", - "start": 2.52, - "end": 2.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "엇", - "language": null - }, - { - "word": "을", - "start": 2.64, - "end": 2.7, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 2.82, - "end": 2.88, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 2.94, - "end": 3.0, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 3.06, - "end": 3.12, - "confidence": 0.996, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "릴", - "start": 3.18, - "end": 3.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "릴", - "language": null - }, - { - "word": "까", - "start": 3.24, - "end": 3.3, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 3.36, - "end": 3.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "요", - "language": null - }, - { - "word": "?", - "start": 3.48, - "end": 3.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "?", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8d708e54-1f9b-48c4-9c0e-c8d5c069aa32", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8cadee05-b4a4-4c16-832b-0881f15d1457", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 0.05999999999999961, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "136bfc66-f528-47ee-9130-c2ac3acdbab4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "15d0c2df-64d2-4e30-97c8-4450100166dc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 0.2400000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "70723b03-5cfb-44e9-8992-8a4291495fd8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "00832a99-aca2-422b-81cd-d46e30d66c53", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 0.3600000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dfaac27c-7203-4b97-af66-0e754ddfdeb3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b0aa55b5-5309-445f-acf8-ac38b60edc4b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 0.41999999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "37e38542-de0e-41c6-a6a9-1d73dc94a7d9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9efd9581-9656-4c25-bfe2-055a42c08302", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 0.5999999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요.", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "469b748e-3f97-4dc6-ab0a-8174bd6b339d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f7b1ff0c-2bfd-499e-9580-569b05060168", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 0.7199999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5c909aec-f7fb-42dd-963e-8a2659b91cf6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "96ed5bb5-497f-4bb6-bd3c-ed585991602d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 0.8399999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "88bdf610-71d2-4de7-916b-2366097b63af", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bf6c1b91-0e33-4466-9407-aedce566261a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 1.1399999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8973d98b-50a0-43e2-a482-27e7f740b613", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "da0e5f0e-9324-4a03-bf93-286a41a819e7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 1.7999999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "66b8e881-0550-416d-b996-8a573a3731c2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f43156fe-c815-49b1-b539-de9509816c8a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 1.9799999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "59c560c5-a217-4fc4-b382-af455bbf7adc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "14342edc-bb19-4233-8308-df8a7ed80408", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 2.2199999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8507b098-aabc-4b62-9426-9ca1a8b07fdf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "54b6f3b0-a8e5-477b-95d4-4b6987b28483", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 2.4000000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "94da324a-7ed4-4c30-9598-34344154b296", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "80b742b0-af8d-472f-bb09-8614cfa40d2b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 2.58, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6d2ab1ea-e800-40d8-a74c-a767ac90d86f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2a2c7f2f-8542-4a19-8dcb-a05fc7541b03", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 2.88, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7bf20491-4250-43d0-8f31-54e307f1797b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "aeb59c3d-6f18-427c-8d09-9e8d59ab427b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 3.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d18278f6-e438-4fef-8444-ff31d576f917", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ca1f9461-5a5a-4ac4-af0a-02e3395f6d05", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 3.1799999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d6ac08c2-269a-4cfa-adea-a52c4de103de", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b815009f-48ef-4f73-943d-4608a1b93cfe", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 3.3, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9468883d-de3d-4a3b-ab53-81f5b834bea5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f7ba7108-c260-41a9-a29c-74477cb219f8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 3.42, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4726cf39-3b85-4ca3-aad6-addf391ae017", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "740d6ecb-f38f-4ce8-b12b-13340bd65a6a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 3.5999999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f9fb7567-d890-44ad-b0ee-141be175efde", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b0d0e3b1-76f5-4bdb-86a3-68b732ae87ec", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 3.7800000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ae82f546-191d-456f-becc-6134dc7529a3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b4c9a68c-3bcc-4376-8b80-3aac0a477702", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 4.08, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3f6490c5-cc36-464c-aaf9-a46a460f33e5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d7dab08b-4755-4cbc-8d40-727a543f9f3b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데,", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5c158e7a-d9ea-4dcf-8d37-d9ed8dc53303", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "395fa083-b934-434f-936a-e7f6c74a5184", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 5.039999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데, 학", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e6c1d1ef-c537-49de-bca3-e382f576323e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d3abad6a-65d7-4e43-8c67-c8481144dab5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 5.220000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데, 학습", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2d5879e8-a85e-4839-900a-68f781ef0966", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "849996ed-a64c-4e6b-bdae-5d227a1460cf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 5.52, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재 영어 인터넷 수강 학습을 하고 있는데, 학습과", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cd9577cf-3ccf-487e-80c6-3a926a285cb3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9dfc3af2-ba3a-4fe4-86ef-ae9f250c040c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 4.08, - "duration": 1.1399999999999997, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 안녕하세요. 제가 현재", - "words": [ - { - "word": " 안", - "start": 4.08, - "end": 4.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 안", - "language": null - }, - { - "word": "녕", - "start": 4.2, - "end": 4.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "녕", - "language": null - }, - { - "word": "하", - "start": 4.26, - "end": 4.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "세", - "start": 4.38, - "end": 4.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "세", - "language": null - }, - { - "word": "요", - "start": 4.44, - "end": 4.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 4.62, - "end": 4.68, - "confidence": 0.835, - "speaker": 2, - "punctuated_word": ".", - "language": null - }, - { - "word": " 제", - "start": 4.74, - "end": 4.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 4.86, - "end": 4.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 현재", - "start": 5.16, - "end": 5.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "643760e3-f15f-45ec-92df-00fb1650a58f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9e2522e9-7cbd-4a27-afa4-dfe99f098b03", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 3.7799999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e920c064-16db-45c8-a4ad-022fdf3a246c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "009f1e54-6055-4a25-a74a-0d7246de975d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "feee3963-4497-423f-aa3b-685bc63fbfad", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8250518b-e52c-43db-bc5f-f4ac984f1664", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 4.26, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "775df182-b2a5-46dc-a35c-a55a86f926bf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cbed5f0e-e703-4197-85f8-8b1da5d93216", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 4.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4dc7f6b3-6110-435e-881e-abb90e117481", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c1111048-ebea-4944-aafd-68a9df6ba652", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 4.68, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b93e7418-4f72-402c-bb52-b0740dd007f3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "71436f9b-77d5-42ea-9fce-4cf8e8d9f74e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 4.92, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3a9ff660-6f30-40a9-9c64-055f9fbbcd64", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "252e3f68-69b9-4e1d-ab0d-ba03105fcc63", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 5.16, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6db73304-fd9c-4502-98f4-6daa3581bccf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "18d8bf39-b776-48cb-9834-fd81c84da1c2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 5.279999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "21cf365b-f506-4b42-9e50-979140c84cc1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b5032c5a-c7c2-4848-9c55-5d3165591985", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 5.459999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서 ", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5775b418-616a-40d0-917c-e0ec1270c4c7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "19e4c248-566b-4bf0-a081-35d2d054eb29", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 5.52, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서 질", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dd034b23-f891-4df1-b83a-0dc0d02104f9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e15ad7f6-0b29-4683-b295-bc639e43fbde", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 5.699999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고 있는데, 학습과 교재 구매 관련해서 질문", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "29a78d8e-493f-4e1b-adfd-9a938c3f1b99", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b5d70da6-d562-4401-9d7e-d2b790bab508", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 5.82, - "duration": 1.8599999999999994, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 영어 인터넷 수강 학습을 하고", - "words": [ - { - "word": " 영", - "start": 5.82, - "end": 5.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "어", - "start": 6.0, - "end": 6.06, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": " 인", - "start": 6.24, - "end": 6.3, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 인", - "language": null - }, - { - "word": "터", - "start": 6.42, - "end": 6.48, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "넷", - "start": 6.6, - "end": 6.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "넷", - "language": null - }, - { - "word": " 수", - "start": 6.9, - "end": 6.96, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "강", - "start": 7.02, - "end": 7.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "강", - "language": null - }, - { - "word": " 학", - "start": 7.2, - "end": 7.26, - "confidence": 0.872, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 7.32, - "end": 7.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "을", - "start": 7.44, - "end": 7.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 하", - "start": 7.56, - "end": 7.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하", - "language": null - }, - { - "word": "고", - "start": 7.62, - "end": 7.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "고", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cceba15a-e4d4-4e2f-a6f2-36dfd70f5bf6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "acf17e4c-e6bf-4993-aa59-496e575c1fdb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 3.7199999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b6a581cd-a654-445d-8aa6-c737c61e02b2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6d7e54ff-4394-478c-b348-5f3bc459071d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 4.0200000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "269f800b-6a76-4da2-ad91-3441d7e3ed84", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "66b09b5b-2b80-46a6-a4b1-94284e96442c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 4.14, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7c1ea5ef-09d8-461c-a81d-a39dcae8cc6e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6554ffcd-e226-4660-ad08-3f7865cd5e81", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 4.319999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a71783df-0d4b-480c-954f-915034227dc8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "80d1cd86-5778-4fef-aa78-5700af3ba8bb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 4.44, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다.", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e552500c-1091-4316-8adc-297ca246db84", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "42cd9de6-d9ab-4609-93b5-5f8d2df756ae", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 5.04, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5b48f6b2-f268-41ce-b5fa-1091c61a32b6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d7673f93-1455-4081-ab8d-e313e41769bf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 5.1000000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4da5ac02-98d3-4cce-95da-e2c46dc764c5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "74cfe41f-89bd-4b11-9d0a-83e854d2e2c0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 5.28, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 상", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 상", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "956fe16c-24be-4ee9-9803-56057bf041ac", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3b7ffbac-3566-4b1d-84b3-e6e8d25d1ba0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 5.3999999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상담", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 상", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 13.14, - "end": 13.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "48cde5e8-2d9c-4c9d-b3a1-0f5a171736fa", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fc7e5f84-8d3b-46ef-86d8-8bb4a14e10a1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 5.64, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 상", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 13.14, - "end": 13.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 가능", - "start": 13.38, - "end": 13.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 가능", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a8b8818f-5ef7-4430-b237-2f0abc84688e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0b6fe112-1dd9-4356-9186-c576204f5505", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 5.88, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 상", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 13.14, - "end": 13.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 가능", - "start": 13.38, - "end": 13.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 가능", - "language": null - }, - { - "word": "할", - "start": 13.62, - "end": 13.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "357da9f9-0f16-4d4c-902c-73d249a0bd8b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9d9746fe-e935-4659-92b4-68bd487c0e17", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 7.8, - "duration": 1.7999999999999998, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 있는데, 학습과", - "words": [ - { - "word": " 있는", - "start": 7.8, - "end": 7.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": "데", - "start": 8.1, - "end": 8.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": ",", - "start": 8.34, - "end": 8.4, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 학", - "start": 9.06, - "end": 9.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 9.24, - "end": 9.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "과", - "start": 9.54, - "end": 9.6, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "86f2269b-b5fb-4a51-a8f4-9b516d21d677", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "671c08b2-e960-4ce3-81c8-eff227d3ebf5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 9.9, - "duration": 3.9000000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할까", - "words": [ - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 상", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 13.14, - "end": 13.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 가능", - "start": 13.38, - "end": 13.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 가능", - "language": null - }, - { - "word": "할", - "start": 13.62, - "end": 13.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": "까", - "start": 13.74, - "end": 13.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7f7b4b40-80a4-4ca1-bbf0-973e9ba04f72", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0e4c89ef-78e7-47ab-b431-ca1458b4782b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 9.9, - "duration": 4.02, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할까요", - "words": [ - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 상", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 13.14, - "end": 13.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 가능", - "start": 13.38, - "end": 13.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 가능", - "language": null - }, - { - "word": "할", - "start": 13.62, - "end": 13.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": "까", - "start": 13.74, - "end": 13.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 13.86, - "end": 13.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "97e22ce5-657d-473c-8c5f-e2ec7e19293d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2be5de05-4be1-4f9b-bb30-d16ea2f301ee", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 9.9, - "duration": 4.139999999999999, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 교재 구매 관련해서 질문이 있습니다. 지금 상담 가능할까요?", - "words": [ - { - "word": " 교", - "start": 9.9, - "end": 9.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 10.02, - "end": 10.08, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": " 구", - "start": 10.26, - "end": 10.32, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "매", - "start": 10.44, - "end": 10.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "매", - "language": null - }, - { - "word": " 관련", - "start": 10.68, - "end": 10.74, - "confidence": 0.969, - "speaker": 2, - "punctuated_word": " 관련", - "language": null - }, - { - "word": "해", - "start": 10.92, - "end": 10.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 11.04, - "end": 11.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": "질", - "start": 11.28, - "end": 11.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "질", - "language": null - }, - { - "word": "문", - "start": 11.46, - "end": 11.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "이", - "start": 11.76, - "end": 11.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 11.88, - "end": 11.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "습", - "start": 12.0, - "end": 12.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 12.06, - "end": 12.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 12.18, - "end": 12.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 지", - "start": 12.78, - "end": 12.84, - "confidence": 0.804, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 12.84, - "end": 12.9, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 상", - "start": 13.02, - "end": 13.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 상", - "language": null - }, - { - "word": "담", - "start": 13.14, - "end": 13.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 가능", - "start": 13.38, - "end": 13.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 가능", - "language": null - }, - { - "word": "할", - "start": 13.62, - "end": 13.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": "까", - "start": 13.74, - "end": 13.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 13.86, - "end": 13.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": "?", - "start": 13.98, - "end": 14.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "?", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "95bc9f07-5922-4efa-b158-413fad86a028", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c62a21ac-0d41-4599-8bf6-3bb78acccc4a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 0.0600000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3ebbaa90-27df-4a62-b7b1-0686cd38ab43", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5a1e3bfb-b822-46bd-b988-fb617fca704d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 0.17999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b9af1e08-1a9f-40b9-b38c-b493d1b626e8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2f63383d-2c2e-40a4-9407-f339d9db9cad", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 0.41999999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fc6bb781-5cb3-4d0e-b51b-ea43276fe1a3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2334c2f9-ee0d-41d0-b12b-60ad47411402", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 0.7799999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a570cbcb-8591-4e31-a2e9-f68a49107ed4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "432aea97-4f05-4d4f-b59a-5aafe090b686", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 0.9599999999999991, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "edc4f6e0-df6c-4b0c-9a41-59c65756914f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "afb3776c-65ea-4cce-a5a4-4bef3797b76e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 1.1400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "97c71f82-9093-4e72-a908-91a011888744", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "700223cc-bced-42af-afc8-9516b5bb3230", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 1.2599999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ce3b7656-a6f1-443f-84ac-baf1ec2dd6e4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "493dc78b-513d-416c-9138-db9060a06926", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 1.4399999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ef94e41d-966a-492c-82c3-3016f661f5ce", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "83955dc1-1380-4b3f-84ef-cd867ec94bf0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 1.92, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f2dedc7a-411c-43be-8709-d7ee816e1a58", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6848873e-f7d9-4ee7-ab2a-b5dc73abb80b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 2.0999999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f4aad0e3-c811-4a5a-8669-38e776934792", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "53cc391f-28d1-4f39-919d-6dc0a870bc12", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 2.459999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "570588a5-f7fe-487e-b48e-dec6938a793c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b909034c-ffd7-4cf3-b1dc-425165592ce4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 2.58, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5e31961f-bb15-4581-b255-a36f6ca3b089", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "07aee54b-1b8b-4ac3-aee9-ae49508fe6a1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 2.9399999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9a45a715-cd7f-4366-90d5-c4b74f7be93a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "65b7984e-7f1e-4267-b771-b68284b3a4dd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 3.24, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c45ee579-612e-453d-adca-d10971ed471b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "425bcbc3-7e04-4794-8edd-c2799bfc5645", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 3.360000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c8c1a40d-7ca4-44ab-98a0-463cfd95c501", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "20f9bd22-181d-46bb-ac7b-29203bb8e3ee", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 3.4799999999999986, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a86da91b-565c-4c34-8899-455b079f795b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ada1bdc5-f79c-4218-bde0-00c61c8fc0dd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 3.6599999999999984, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6a09e37a-eee9-4e2f-8eac-ff97c9c46d30", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eee1c21d-2f8d-496d-a3a3-794229d82112", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 3.8400000000000016, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "54d27720-1a9e-40e7-967b-de77ee63043c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9778d674-e52c-4905-9464-d902d0f9cd87", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 4.020000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "16fabf5b-a080-4e3d-bb49-d0f0cc52e352", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "938aeb09-9c4a-4d0c-925b-585782f0274e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 4.139999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a1301817-46a1-43f9-9e5c-e01962ab0618", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "000a48e6-f1e8-4d27-a203-4f6cfad88af9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 5.040000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서 제", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ee1911e9-7f27-4df5-91af-b1442d2d2cd9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c3700a70-c3c5-4e78-904f-5169d8fedcbc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 5.159999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서 제가", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ecca469d-15dd-43e2-8c5b-325372ce0bf7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6a1e76a6-edb7-4dc7-aed3-8314f5f572ce", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 5.459999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디 간편 진단 학습 시스템을 이용해서 제가 10", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - }, - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e3ee970d-dca1-4e59-934f-937f4830f45d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e20c1ec3-eae4-4ecf-9cb5-d76e2c4f6bf2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 14.58, - "duration": 1.4399999999999995, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이번에 기간 스터디", - "words": [ - { - "word": " 이", - "start": 14.58, - "end": 14.64, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 14.7, - "end": 14.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 14.94, - "end": 15.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 기", - "start": 15.3, - "end": 15.36, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "간", - "start": 15.48, - "end": 15.54, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "간", - "language": null - }, - { - "word": " 스", - "start": 15.66, - "end": 15.72, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 스", - "language": null - }, - { - "word": "터", - "start": 15.78, - "end": 15.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "터", - "language": null - }, - { - "word": "디", - "start": 15.96, - "end": 16.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "디", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fcd6610c-427b-4cdd-8756-d2ee38e12801", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "48e065bb-324f-46d7-8d46-545a31a08dc7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "42d46eba-81d1-49e2-987a-e6ea8e70d0e5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "904aa066-b6ec-4b12-8302-8ebe211e5e2e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 3.84, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4f25a778-8835-4b20-98fe-b9d67b124f61", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f8f96c98-4629-46f5-b53d-84da6deced9f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "46e47132-00b6-47ca-beec-4be069edfb49", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2adb861f-069f-49ea-8d6c-1749203c3e75", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "47482e22-e5d3-465f-a2d8-566b744d5f31", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e7854899-dc75-4480-8ac8-28f690c090c2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6ceb87b7-f7a4-4f3f-8ec7-685b9daceb4a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "31bd4f23-8582-47dc-9dec-bc518487e864", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "eaaf0827-02f5-4d89-b8eb-74a7fd66c098", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e47eba7d-2757-4acc-bf8e-a89b487c66b9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 5.039999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점 중", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "596f11f4-cbe6-431c-8327-9ae24a6e48f0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7e03f92c-257c-4725-bcef-066979aed945", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점 중에", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7ecd209b-38a7-4b3c-99c4-dfa09d684b29", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "436cba36-f074-4e80-a946-73199a77df08", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 5.52, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템을 이용해서 제가 100점 만점 중에 7", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - }, - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4eefdfc1-7290-4bb8-b5b9-a31ec59b7586", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "61461662-ed4e-4b3f-b155-2963795ce2cc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 16.44, - "duration": 1.6199999999999974, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 간편 진단 학습 시스템", - "words": [ - { - "word": " 간", - "start": 16.44, - "end": 16.5, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 간", - "language": null - }, - { - "word": "편", - "start": 16.62, - "end": 16.68, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "편", - "language": null - }, - { - "word": " 진", - "start": 16.98, - "end": 17.04, - "confidence": 0.99, - "speaker": 2, - "punctuated_word": " 진", - "language": null - }, - { - "word": "단", - "start": 17.1, - "end": 17.16, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 학", - "start": 17.4, - "end": 17.46, - "confidence": 0.973, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 17.46, - "end": 17.52, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 시", - "start": 17.76, - "end": 17.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 시", - "language": null - }, - { - "word": "스", - "start": 17.88, - "end": 17.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스", - "language": null - }, - { - "word": "템", - "start": 18.0, - "end": 18.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "템", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "12b66e04-5cf3-481d-be0c-93cd2ad02316", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bcd5db64-17e8-41f3-af98-3e77b9d4af8b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 3.960000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100점 만점 중에 70", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7f7e353b-e489-43f2-afc6-4edb60294fe9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fa95d582-3046-4e91-beb0-95befe917b59", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100점 만점 중에 70점", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e775e57d-8037-4f78-be9a-05bf76100a97", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "741612df-94d4-48cc-ba34-9f28aae03464", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100점 만점 중에 70점을", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a36fbb91-6223-4cb6-9bcb-eb95ee8f38ce", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bd7f503c-bcd3-4f16-ac0b-e8dbefaef2a4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 4.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e086a6fe-aacd-4880-9fca-48fae69b9099", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8861a92f-34bf-4e00-8c55-1322ca09189e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 4.620000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받았", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b66abb31-3c51-4d39-bb7f-e2560f5f9432", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f91e2236-b2b3-4a86-9bca-92cd7b45ca11", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 4.920000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받았는데,", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "04875fd9-f435-4713-9376-b95118e840dc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1fa6b9e3-c796-45e0-86b8-09cc6a57a5e9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 5.879999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100점 만점 중에 70점을 받았는데, 화", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "194b5193-ddc8-4c80-8e82-16a84758e398", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c06aaccc-a0ad-4354-8d6d-73faec71a1a1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 18.18, - "duration": 1.9800000000000004, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "을 이용해서 제가 100", - "words": [ - { - "word": "을", - "start": 18.18, - "end": 18.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 이용", - "start": 18.36, - "end": 18.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이용", - "language": null - }, - { - "word": "해", - "start": 18.54, - "end": 18.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "서", - "start": 18.66, - "end": 18.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 제", - "start": 19.56, - "end": 19.62, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 19.68, - "end": 19.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 1", - "start": 19.92, - "end": 19.98, - "confidence": 0.4, - "speaker": 2, - "punctuated_word": " 1", - "language": null - }, - { - "word": "0", - "start": 19.98, - "end": 20.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "0", - "start": 20.1, - "end": 20.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fa750b23-675c-4f2c-82fc-dfa2c940c19a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "087f8b9f-ea18-48f8-8156-9c6c754a771c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 3.960000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70점을 받았는데, 화면", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8277205f-8868-4171-92b6-1de286fc053c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fabe5938-1ca5-48ed-8222-ec1a5bd21b73", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70점을 받았는데, 화면으로", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "095ba1f9-d8c0-4aae-9a96-6f0fe91a79df", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "556648ef-876e-4bda-b7f8-7d6f1c24d2fc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 4.560000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70점을 받았는데, 화면으로는", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cddefd5e-f644-4399-a58d-e30de1e27d7d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "885581fd-a4f6-490d-987d-5a847040a15c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 4.920000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4983114a-1bf4-46c9-b6b9-16c4eea286bf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "88b0d6e0-cd79-4418-935c-3831bfecc3bf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 5.400000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재 당", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9a5ab06d-a258-4257-8799-d551dc6e2321", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8c58f2ea-c4b2-46e0-8818-1a9488057f2c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 5.640000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재 당신", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "da8d6532-8643-4c6f-ab02-12d6aebe9012", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "05b80df9-4227-473e-b22b-3faccb2b2eac", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 5.880000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70점을 받았는데, 화면으로는 현재 당신의", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "785e3991-a7a0-401c-bdd2-5d74c4eae591", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4b641ae9-b24b-4b75-a231-d0427b6c0dd2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 20.22, - "duration": 1.9200000000000017, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점 만점 중에 70", - "words": [ - { - "word": "점", - "start": 20.22, - "end": 20.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 만", - "start": 20.46, - "end": 20.52, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": " 만", - "language": null - }, - { - "word": "점", - "start": 20.7, - "end": 20.76, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 중", - "start": 21.42, - "end": 21.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 21.6, - "end": 21.66, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 7", - "start": 21.9, - "end": 21.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 22.08, - "end": 22.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9e9a0bff-a958-4cc3-ab1b-96dde55b760f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e2aa8f46-7595-4203-95b7-c4ac14a3af51", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 4.02, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "42650fcf-2847-4f99-981a-31ad62754a88", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "93e1d0a3-a047-48c1-a634-c5c1225c1575", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 4.139999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e100db85-0677-4af4-bcf5-8397b67e4fb2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0b8d6867-2fb4-44dc-92c4-80313f4d8e10", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 4.319999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "836bf77b-cec2-43d5-b5fd-fb3ec5dd7b80", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "383775aa-9852-477d-b6dd-4af289b69132", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 4.559999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b8db4bf8-ab04-4174-bba0-04dc58e1e2a2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "33f956bd-17a0-4228-ad2b-5848bc511cc9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 4.739999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c11491bb-37c0-464e-a05e-7d26275cfd8b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7918f5c9-2579-4d79-8524-19df0270f32b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 4.919999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0db200bb-13ee-4721-9dd9-b67c46b07501", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "22a4cf23-329e-4863-bb61-a99e56cd2491", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 5.039999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fb5130ba-91e2-4835-b76d-5c83566ae02a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d7f135bd-70b1-432d-b599-1827d89027e3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "443b2744-e6c2-4743-9378-e6615ad6d79b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f2277917-ceb8-4edc-ad67-765cd7c1d6ff", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 5.279999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 ", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3f6ed741-4e67-4710-8af9-27604d54b3d1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "631c9bc8-b076-4051-80b8-08911c8cba31", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 5.52, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 뜹", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0f281f2e-f54c-4521-9898-5ea25536479d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0460d95b-0601-4612-bffb-6ba21ea166a3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 5.639999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 뜹니", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "50072cbf-6075-4dba-a671-d02bc19b3fea", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eb157213-9ec8-4a3f-8c4b-650cda3f8a50", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 5.759999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면으로는 현재 당신의 레벨은 아마추어가 뜹니다", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다", - "start": 27.96, - "end": 28.02, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "24babb58-7f7a-4c6d-920c-02d01a9cc01e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "15b16c6e-9b72-43da-b4ee-a65fc1744c3b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 22.26, - "duration": 1.9199999999999982, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "점을 받았는데, 화면", - "words": [ - { - "word": "점", - "start": 22.26, - "end": 22.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": "을", - "start": 22.44, - "end": 22.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 받", - "start": 22.62, - "end": 22.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 받", - "language": null - }, - { - "word": "았", - "start": 22.74, - "end": 22.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "았", - "language": null - }, - { - "word": "는데,", - "start": 23.04, - "end": 23.1, - "confidence": 0.963, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 화", - "start": 24.0, - "end": 24.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 화", - "language": null - }, - { - "word": "면", - "start": 24.12, - "end": 24.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "96806fbf-59a0-4ca3-86f9-702cc0ab19b5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "af2c077a-dc1b-4b1b-afff-e0d11ccdf4b5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.36, - "duration": 3.900000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고", - "words": [ - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다", - "start": 27.96, - "end": 28.02, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라고", - "start": 28.2, - "end": 28.26, - "confidence": 0.935, - "speaker": 2, - "punctuated_word": "라고", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f1553e12-fdd8-40a3-a068-f1672bf88c3f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a887575d-70b2-4371-b198-132d22830ca3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.36, - "duration": 4.080000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 ", - "words": [ - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다", - "start": 27.96, - "end": 28.02, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라고", - "start": 28.2, - "end": 28.26, - "confidence": 0.935, - "speaker": 2, - "punctuated_word": "라고", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7fb8fea2-846b-4939-a323-a3f7fbe3d5bf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4f588cef-b7b3-47d8-b56d-f12e7e1b0f0a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.36, - "duration": 4.199999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어", - "words": [ - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다", - "start": 27.96, - "end": 28.02, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라고", - "start": 28.2, - "end": 28.26, - "confidence": 0.935, - "speaker": 2, - "punctuated_word": "라고", - "language": null - }, - { - "word": "되어", - "start": 28.5, - "end": 28.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "되어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c84b8b62-6dee-4656-b91c-a98e2fe0d54d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5875271f-e6de-4140-98e5-d44653404786", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.36, - "duration": 4.440000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어 있어", - "words": [ - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다", - "start": 27.96, - "end": 28.02, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라고", - "start": 28.2, - "end": 28.26, - "confidence": 0.935, - "speaker": 2, - "punctuated_word": "라고", - "language": null - }, - { - "word": "되어", - "start": 28.5, - "end": 28.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "되어", - "language": null - }, - { - "word": " 있어", - "start": 28.74, - "end": 28.8, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 있어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "52e8f423-a065-46ec-99cc-a173987dacfc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "33a3dfdc-7598-4b0c-8823-345ff3acfa43", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.36, - "duration": 4.620000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어 있어요", - "words": [ - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다", - "start": 27.96, - "end": 28.02, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라고", - "start": 28.2, - "end": 28.26, - "confidence": 0.935, - "speaker": 2, - "punctuated_word": "라고", - "language": null - }, - { - "word": "되어", - "start": 28.5, - "end": 28.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "되어", - "language": null - }, - { - "word": " 있어", - "start": 28.74, - "end": 28.8, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 있어", - "language": null - }, - { - "word": "요", - "start": 28.92, - "end": 28.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4a4a6449-0283-4d73-92bc-317f1ae23478", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "12cfde55-162e-4127-89bf-a874c21929cf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 24.36, - "duration": 4.740000000000002, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "으로는 현재 당신의 레벨은 아마추어가 뜹니다라고 되어 있어요.", - "words": [ - { - "word": "으로", - "start": 24.36, - "end": 24.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "으로", - "language": null - }, - { - "word": "는", - "start": 24.72, - "end": 24.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 현재", - "start": 25.08, - "end": 25.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 당", - "start": 25.56, - "end": 25.62, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 당", - "language": null - }, - { - "word": "신", - "start": 25.8, - "end": 25.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "신", - "language": null - }, - { - "word": "의", - "start": 26.04, - "end": 26.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 레", - "start": 26.22, - "end": 26.28, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 26.34, - "end": 26.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "은", - "start": 26.52, - "end": 26.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 아", - "start": 26.76, - "end": 26.82, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 26.94, - "end": 27.0, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 27.12, - "end": 27.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 27.24, - "end": 27.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "가", - "start": 27.42, - "end": 27.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "뜹", - "start": 27.6, - "end": 27.78, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "뜹", - "language": null - }, - { - "word": "니", - "start": 27.84, - "end": 27.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "다", - "start": 27.96, - "end": 28.02, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라고", - "start": 28.2, - "end": 28.26, - "confidence": 0.935, - "speaker": 2, - "punctuated_word": "라고", - "language": null - }, - { - "word": "되어", - "start": 28.5, - "end": 28.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "되어", - "language": null - }, - { - "word": " 있어", - "start": 28.74, - "end": 28.8, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 있어", - "language": null - }, - { - "word": "요", - "start": 28.92, - "end": 28.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 29.04, - "end": 29.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "831fc7c0-9646-44c2-ad40-0c971e7abf2a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8183fb57-74a3-445d-b982-6f6d8e0c0b82", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 0.05999999999999872, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "db029ced-1e58-458e-be17-a21eca1dab38", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e2e1bc5f-dff3-4599-9f6d-1f31a17c0fb1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 0.17999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "942e8ca2-38c8-4f1e-bdd1-2436a6ea43af", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "48feef9d-f1c1-4e05-b787-eb323b26fb5b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 0.23999999999999844, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f13b377a-626e-4266-ae15-ac2131878ecd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "65568a1e-c373-4cb0-a8e0-e1240b5f09e7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 0.41999999999999815, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e6be0957-7f20-4881-8a2f-b8339416ab25", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d6012de3-b9d7-4c69-8877-7954a663be5c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 0.4800000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1dbb9659-0b86-4d64-8fd4-eebe5780fdd4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eb796588-9c9a-40c8-ac4c-aab003b000ba", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 0.7799999999999976, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3c428e28-b670-48f4-abac-4a82c47dfefd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "59700d70-3574-45cc-96da-3d40078458ec", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 1.0799999999999983, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4e9cb015-5243-460c-9b68-9bdae290e0fe", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "abf03dba-d450-4a34-bb30-b825ee8fc586", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 1.1999999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d36b0716-d5fd-402a-89ac-c6849cacef18", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7da8ac99-cd3f-4ef0-8958-0575fd1034ee", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 1.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 ", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7447c74a-e047-4db4-ad6e-3ae4d5d7f7ad", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4d1f85d9-5a92-42cc-94b2-2dba16a06879", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 1.6199999999999974, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f26f6856-f720-4982-99d7-0996ab39b06c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8664e93b-154a-4ca2-9246-8065e63d9a88", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 1.7999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9df130ad-8d4a-41e8-8248-26a389867cf6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4acdc3a5-a825-4467-99c3-6377e7b0525f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 2.099999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3fa9979b-e3af-4b63-8d06-6aede7b11b20", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0d4fc3d6-f9da-422b-bf1e-3d4ffa4bd3c7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 2.2799999999999976, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "270d1b5e-6f22-4ed0-a392-dc0a177ae75f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d3541804-b37e-420b-b4eb-59b1b9c4b2bb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 2.5199999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1b2cb5b1-7c14-44dd-9b15-5fbb40c0a040", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4f249d7a-aa6b-42f4-9ccb-09b4508bbf75", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 2.639999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6de387ec-2a6b-45ce-af70-b2575c8ea2b7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1fba9daf-48cc-4df5-b881-fce7649db6dc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 2.879999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "53f52024-c866-4295-baea-62c3352270b2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "45c92257-f283-4f6d-b467-99ebc2128a5c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 2.9999999999999964, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d89c056b-a17f-4a2b-8b6a-408238e8ee70", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "281235aa-49dd-4f0f-a0fb-2609d9829aa8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 3.179999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "353df673-0591-49de-a8fc-b7cae0fb8826", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8d497700-1fe3-4f99-a740-19e9b43a1187", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 3.3000000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "28b1e05c-d6db-4668-a313-4dc621de75ec", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4f2a9f75-3df7-4255-9344-3e84e23af95d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 3.66, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9223ac73-45f3-4083-aa1e-2dedb35765d7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e40ec1a7-d678-4a6b-923f-d354503626d4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 3.900000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "20316225-792f-4885-a3b6-5e50fb80bef7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f06618bb-ba4a-4260-a463-b20251e4ce7b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 4.02, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "32f3ccee-c69f-4466-862d-8d0d72a42185", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "72706e22-8d82-448e-be0e-da2d648aee56", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 4.199999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니까", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a2026514-a6de-40b1-8bfc-129b5c01a160", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b3aec50e-ab25-4883-87a4-461c63b00715", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 5.039999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니까 실", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "95d778fd-5953-4db1-bb81-2b538a90e589", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "dd07164a-7fbf-48ff-9a52-18ce6cb26124", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 5.219999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨에 맞는 강의 목록이 있길래 들어보니까 실제", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2d0c3906-de1b-4df0-b7c5-0cdd3fe2a599", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6ebe0a83-b8a7-4cb0-8571-f05a59fa5e08", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 29.94, - "duration": 1.1999999999999993, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 그런데 제가 그 레벨", - "words": [ - { - "word": " 그", - "start": 29.94, - "end": 30.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 30.06, - "end": 30.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": "데", - "start": 30.12, - "end": 30.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "데", - "language": null - }, - { - "word": " 제", - "start": 30.3, - "end": 30.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 30.36, - "end": 30.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 그", - "start": 30.66, - "end": 30.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": " 레", - "start": 30.96, - "end": 31.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 31.08, - "end": 31.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a85a2b31-0ab1-455a-a8ae-fb03357051b5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "39664713-a360-4495-93e8-e468791a54df", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 3.960000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "780c4879-7292-4131-9a30-3ed6279e453f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8bc60048-399c-444c-a640-073e0085f1f0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c27bf071-9056-4fb3-87c4-8012471f3ab7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e6a66a1b-6e57-451f-9b33-cfaa5c6aa68e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "173a8828-7e64-42d7-9cb2-d214d252a6bb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a747b867-78b0-4b34-a995-6494fc36b5e0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 4.68, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9b3bbe3a-e6a9-45cb-a848-7b5941d881bb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7f74862e-e023-4fad-abe8-f4cbcefcc37a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 4.859999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "07bbc176-e875-4f3d-a1ed-d2fbeb2d20d1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d21cde25-730d-45d4-9dfe-be502c8743de", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 5.339999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fe7474f9-a691-4161-b465-84a376140bd6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "399761ec-6c3b-443b-b934-7d940a4604dc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 5.460000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속도", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "014f4d42-3730-4ec9-9c1e-801d0ac58080", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1559c76b-be60-4b3d-bbf3-143b70dcb265", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 5.579999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속도를", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b43ef5f2-a314-461f-91da-10b346624b8e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "49316013-004f-49c0-b0b1-1a219f636937", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 5.759999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래 들어보니까 실제 제가 하는 학습 속도를 따라", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "599bb462-b5ee-4692-b0ca-40a805ef62e4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "87faad3d-b7fc-4083-a249-9f1fad30884c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 31.32, - "duration": 1.9200000000000017, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 맞는 강의 목록이 있길래", - "words": [ - { - "word": "에", - "start": 31.32, - "end": 31.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": "맞", - "start": 31.5, - "end": 31.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "는", - "start": 31.68, - "end": 31.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 강", - "start": 31.98, - "end": 32.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 32.16, - "end": 32.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 목", - "start": 32.4, - "end": 32.46, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 목", - "language": null - }, - { - "word": "록", - "start": 32.52, - "end": 32.58, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "록", - "language": null - }, - { - "word": "이", - "start": 32.76, - "end": 32.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 있", - "start": 32.88, - "end": 32.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "길", - "start": 33.06, - "end": 33.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "길", - "language": null - }, - { - "word": "래", - "start": 33.18, - "end": 33.24, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "래", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "15c0893c-e8e7-43ac-8f1e-a67608d96580", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ba0493e9-2c5b-41a9-b8bd-3663e75a9a70", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 3.539999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ea68679e-f387-4394-b6fc-46ad846ca3ae", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d49c8a29-ed1b-4b72-b135-f17120de7639", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 3.8400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4e6afb1c-3ec2-4644-a97c-00c7ac0d752e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5db0da88-e1bc-40e6-8a8c-01f3e6d5d2c1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.020000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d382cdd2-26b4-4154-93a8-d71b46508bdc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "08bc4670-5f60-4e6e-bc44-fc7c6d49cb6e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 ", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "52a5a545-e539-4bc1-8146-96b56d67a877", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7d4d2009-f2b3-4ab0-8a66-9f5233b98111", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.259999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0cf5da26-19a9-4b85-a284-fba435c9d27a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "03ad95ea-728b-41a2-881f-8bb1210b1059", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 ", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "47ff0a81-0dd1-420f-ba57-9df684f5f13b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8be88faf-ac7c-47a1-a207-2b47445249fd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.439999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": "힘", - "start": 37.92, - "end": 37.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "힘", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7b356670-0714-43e0-ad9b-267658bdd433", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c183d21f-6752-41ee-8e6d-b4d5f2c62f57", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.560000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": "힘", - "start": 37.92, - "end": 37.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "힘", - "language": null - }, - { - "word": "든", - "start": 38.04, - "end": 38.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ccdcf8f0-b21a-4095-bebc-005cafd317b3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2ae4f5ad-c3dc-4d4c-965f-0ad161c936eb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.800000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": "힘", - "start": 37.92, - "end": 37.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "힘", - "language": null - }, - { - "word": "든", - "start": 38.04, - "end": 38.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": " 것", - "start": 38.28, - "end": 38.34, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 것", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3d6f8f9e-9663-4d9e-a630-d8ebec1287ab", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c2fc1a09-57ba-4db9-a0a4-d314d5948ca4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 4.920000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": "힘", - "start": 37.92, - "end": 37.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "힘", - "language": null - }, - { - "word": "든", - "start": 38.04, - "end": 38.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": " 것", - "start": 38.28, - "end": 38.34, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": " 같", - "start": 38.4, - "end": 38.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 같", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c181ab7c-697a-4eb5-b3d8-fc91efb4310c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ec10b0e6-0932-45a4-94f9-a3b92c52c6b9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 5.100000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같아", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": "힘", - "start": 37.92, - "end": 37.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "힘", - "language": null - }, - { - "word": "든", - "start": 38.04, - "end": 38.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": " 것", - "start": 38.28, - "end": 38.34, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": " 같", - "start": 38.4, - "end": 38.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 38.58, - "end": 38.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "397e02ac-45db-4e0d-816a-a2cf1975a90c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fb0238e5-ad95-48d0-b089-8d810b6885c6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같아요", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": "힘", - "start": 37.92, - "end": 37.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "힘", - "language": null - }, - { - "word": "든", - "start": 38.04, - "end": 38.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": " 것", - "start": 38.28, - "end": 38.34, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": " 같", - "start": 38.4, - "end": 38.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 38.58, - "end": 38.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "요", - "start": 38.7, - "end": 38.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ce21fb01-6a45-43be-8c93-64188d7f052d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c7018031-2aa1-4792-858f-bad1cd9b579e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 33.54, - "duration": 5.340000000000003, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 들어보니까 실제 제가 하는 학습 속도를 따라가기가 너무 힘든 것 같아요.", - "words": [ - { - "word": " 들어", - "start": 33.54, - "end": 33.6, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "보", - "start": 33.78, - "end": 33.84, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "니", - "start": 33.9, - "end": 33.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 34.08, - "end": 34.14, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 실", - "start": 34.92, - "end": 34.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 실", - "language": null - }, - { - "word": "제", - "start": 35.1, - "end": 35.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": " 제", - "start": 35.22, - "end": 35.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 35.34, - "end": 35.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 하는", - "start": 35.58, - "end": 35.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 하는", - "language": null - }, - { - "word": " 학", - "start": 35.94, - "end": 36.0, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 36.12, - "end": 36.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": " 속", - "start": 36.6, - "end": 36.66, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 속", - "language": null - }, - { - "word": "도", - "start": 36.72, - "end": 36.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "를", - "start": 36.84, - "end": 36.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 따라", - "start": 37.02, - "end": 37.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 37.32, - "end": 37.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 37.44, - "end": 37.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 37.5, - "end": 37.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": "너", - "start": 37.68, - "end": 37.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 37.74, - "end": 37.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": "힘", - "start": 37.92, - "end": 37.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "힘", - "language": null - }, - { - "word": "든", - "start": 38.04, - "end": 38.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": " 것", - "start": 38.28, - "end": 38.34, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": " 같", - "start": 38.4, - "end": 38.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 38.58, - "end": 38.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "요", - "start": 38.7, - "end": 38.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 38.82, - "end": 38.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "09c10289-d62b-42ac-bcc4-dc2d04f27e9b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9af30a83-0275-40a8-9d2d-3e4da6ee83c6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.48, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네", - "words": [ - { - "word": " 네", - "start": 39.48, - "end": 39.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "febb2862-9d37-48a8-b09f-ce4e0868d19d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6999914a-8bac-48f2-9221-4cf3f8afafd3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 0.29999999999999716, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e0f4e509-e749-4140-a86a-518837e831ab", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "40b07066-279b-4e51-aed7-1928dc3a9a6f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 0.4799999999999969, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "07e3741f-5fab-436d-967a-62e0f987ad62", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a460f50e-6eb9-4f40-bc52-2d3bfdde0578", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 0.7199999999999989, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e12369cf-3b41-45b8-ac87-38726b02232d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "021df2ff-d49f-4018-96db-770eef4596d7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 1.0799999999999983, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "014ffbb0-ff2c-4895-a83b-7c1dbf2d4e15", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e09d5222-722e-4ac5-b058-1925dae85851", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 1.1999999999999957, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "45b6bd62-070f-4f38-b16b-428b054d688f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "92e2e4da-a910-4a28-a0be-dd81b42cfe88", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 1.3799999999999955, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f8ccc8f1-199b-4037-98f5-f0bc6b308b20", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ccd88bdd-cdf7-4956-8ac5-c94d8d0f4fdd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 1.5599999999999952, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ef69c307-e5ec-4f98-af8a-2fc9786ee5d4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "33a093b1-4bf6-45ab-88b4-df8f906b1588", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 1.7399999999999949, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "928f9726-f126-4c57-87ff-f509aff8ccab", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7175e319-27c3-43aa-aa06-6d137425f682", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 1.7999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7e6c901a-3aa6-4896-b6d4-f99bc2a5a2e1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d3e10f1f-99bd-4c99-aab8-51e2cca3659f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 1.9799999999999969, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a8122d1f-25ad-4956-8b1c-41e97afed023", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "736ab845-d943-4dc3-a39a-e4991d4d6471", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 2.1000000000000014, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0803c916-c411-4083-bb7e-8ca63c5b3d0c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6c7ee943-9b56-40d4-82cc-eef16a0584b0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 2.460000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ab95a710-0ff9-407a-ba79-9254c69ec505", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "24e43baf-8983-4e4d-8258-c1e7fb0ebd47", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 2.6999999999999957, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8d45f41e-c93d-4ec4-9045-a487ce5befbc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eb8ba5c7-3736-4876-95d5-68dc89b0deb0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 2.9399999999999977, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "270db258-5cb0-423e-8b97-0e0a834bf9d7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "129f9352-d9f1-43ab-8ba5-6dbf7e98fe71", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 3.059999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 42.42, - "end": 42.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "기", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2ab1d243-b86d-4343-bbf5-8293a8f12639", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "eba1b329-e217-4149-ae6f-e0f576dc608f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 3.1799999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 ", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 42.42, - "end": 42.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 42.48, - "end": 42.54, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "35ae161b-be29-4832-8abe-24fdfc16704b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "761ab718-a38c-46b2-a151-eecbb9897b1e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 3.239999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 42.42, - "end": 42.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 42.48, - "end": 42.54, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "힘", - "start": 42.6, - "end": 42.66, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "힘", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7384a951-595b-4713-b795-9c7473091ea9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cfa52d33-2e60-41b8-9d3d-2cadc99bd1e8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 3.4200000000000017, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 42.42, - "end": 42.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 42.48, - "end": 42.54, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "힘", - "start": 42.6, - "end": 42.66, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "힘", - "language": null - }, - { - "word": "들", - "start": 42.78, - "end": 42.84, - "confidence": 0.542, - "speaker": 1, - "punctuated_word": "들", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d0691be2-a4b1-42ec-97cd-c932d05b1463", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c1091f3b-8e05-44fb-95f9-f0c63132dd82", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들까", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 42.42, - "end": 42.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 42.48, - "end": 42.54, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "힘", - "start": 42.6, - "end": 42.66, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "힘", - "language": null - }, - { - "word": "들", - "start": 42.78, - "end": 42.84, - "confidence": 0.542, - "speaker": 1, - "punctuated_word": "들", - "language": null - }, - { - "word": "까", - "start": 43.08, - "end": 43.14, - "confidence": 0.913, - "speaker": 1, - "punctuated_word": "까", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "82480331-694a-43bc-8c78-57959f09a071", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1368692c-ec6d-459a-a905-76b9aa9bc733", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 3.8399999999999963, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들까요", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 42.42, - "end": 42.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 42.48, - "end": 42.54, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "힘", - "start": 42.6, - "end": 42.66, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "힘", - "language": null - }, - { - "word": "들", - "start": 42.78, - "end": 42.84, - "confidence": 0.542, - "speaker": 1, - "punctuated_word": "들", - "language": null - }, - { - "word": "까", - "start": 43.08, - "end": 43.14, - "confidence": 0.913, - "speaker": 1, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 43.2, - "end": 43.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d74cc7bd-2bea-4410-b225-ccd2765f57e0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f444ea25-da97-4cee-8e7e-fc2518c873cb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 39.42, - "duration": 3.960000000000001, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 그럼 현재 고객님은 어느 부분에서 따라가기가 힘들까요?", - "words": [ - { - "word": " 네", - "start": 39.42, - "end": 39.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 39.54, - "end": 39.6, - "confidence": 0.994, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 그", - "start": 39.66, - "end": 39.72, - "confidence": 0.858, - "speaker": 1, - "punctuated_word": " 그", - "language": null - }, - { - "word": "럼", - "start": 39.84, - "end": 39.9, - "confidence": 0.965, - "speaker": 1, - "punctuated_word": "럼", - "language": null - }, - { - "word": " 현재", - "start": 40.08, - "end": 40.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 고", - "start": 40.44, - "end": 40.5, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 고", - "language": null - }, - { - "word": "객", - "start": 40.56, - "end": 40.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "객", - "language": null - }, - { - "word": "님", - "start": 40.74, - "end": 40.8, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "님", - "language": null - }, - { - "word": "은", - "start": 40.92, - "end": 40.98, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "은", - "language": null - }, - { - "word": " 어", - "start": 41.1, - "end": 41.16, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 41.16, - "end": 41.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 41.34, - "end": 41.4, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 41.46, - "end": 41.52, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "에서", - "start": 41.82, - "end": 41.88, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "에서", - "language": null - }, - { - "word": " 따라", - "start": 42.06, - "end": 42.12, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": " 따라", - "language": null - }, - { - "word": "가", - "start": 42.3, - "end": 42.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "기", - "start": 42.42, - "end": 42.48, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "기", - "language": null - }, - { - "word": "가", - "start": 42.48, - "end": 42.54, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": "힘", - "start": 42.6, - "end": 42.66, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "힘", - "language": null - }, - { - "word": "들", - "start": 42.78, - "end": 42.84, - "confidence": 0.542, - "speaker": 1, - "punctuated_word": "들", - "language": null - }, - { - "word": "까", - "start": 43.08, - "end": 43.14, - "confidence": 0.913, - "speaker": 1, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 43.2, - "end": 43.26, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "요", - "language": null - }, - { - "word": "?", - "start": 43.32, - "end": 43.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "?", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1d7c9d4e-a60d-4538-8520-be1aabb0ac25", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4a2ece10-9e82-48c0-a26a-53c8f9f9481b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e8826566-8de8-46dc-a011-6e666cc5c0e7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1652199e-c691-4fa1-a93d-3b239c277ef3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 0.30000000000000426, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음,", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "29c5507b-7443-445b-b8e3-1d1cf5cd88e5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "69ff74d2-6d3b-492b-a01a-96de0fac4d8b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 0.4200000000000017, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b66fb6bb-e2df-46d7-8147-1135e6eb7939", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "78e5185c-d56e-434b-a0fa-8f599ce687cb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 0.480000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7f5dcf37-5c58-4743-8272-b111b864805c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8862caf5-37ff-4146-a005-1aabe1e83dde", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 0.720000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e5dfc153-4a9e-4cdf-9176-7f468cd6edb1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "56ee8e12-665a-429f-ae33-2b1b7bd4373d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 0.9600000000000009, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7769a758-56c8-461f-ab30-2de058b406ad", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "afc5cd72-3085-4df2-a2bd-d3f208a9a8ef", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 1.0800000000000054, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1e887f2d-1aeb-4c6f-8fff-6847e49273ad", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "daac4670-d4ab-4d55-acaf-d54c17963a88", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 1.2600000000000051, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6ee553c4-1783-4279-8740-7750d144db59", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "56fc87e6-1fbf-4f17-8586-1f11433bfed2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 1.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6b07f5eb-873f-4e9a-b6ec-f8393d54a94a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "03d0c7b4-38b3-4c9d-bd06-a9245e436b24", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 1.6200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dbcd7686-8191-401f-92d0-9cb3b1101f27", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9e197d01-fb96-4ce8-8782-958b4d6028ea", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 1.740000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "294e3ec1-4086-485e-b9f4-3d176e5cda35", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "baa8eb50-f31b-40c0-a5a6-1b6c5ea3e3c1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 2.1000000000000014, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "24fb9e99-b614-4eb4-8722-4cb6a582916e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7f3cd073-6292-419b-9cb1-a198b0a2eee9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 2.220000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1dec7707-eb1d-401e-9fa9-93d45af61134", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "12a49f65-9664-4946-a526-2c0ee9212964", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 2.460000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6a108b21-6c4b-401c-9ccf-505d66fe839e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "60800525-22b6-4bfb-8650-3e0f0c33223b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 2.6400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "212da6f2-ae57-4cc1-a521-7c9ea76657d9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8b14ffb6-6885-4175-a27b-8cc599a59d16", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 3.5400000000000063, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "faa73bae-c8ac-4b0b-98c7-db1372e6c27e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "61500f28-a385-4ff5-9389-37ca2d87ed6d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 3.720000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "caec4808-6821-4c33-a64c-43805c8c422a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0fcaa9b5-c761-4679-bdd7-a90c2c50ca66", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 3.9000000000000057, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e48ccb50-8dfd-4354-af13-468680c4ed2e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b6d99126-d8ec-4cfb-ae29-42af60cf5ca5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 4.020000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5c1f4b1f-9808-436e-96df-3f9869f07bb8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d82823c9-60ab-4373-a041-e18950b61f34", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5672a23c-59c0-408b-b91e-54851afe1698", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e25f1ed9-3e8e-467a-aea9-718126a961c8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 4.380000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "20ef37a4-49fc-49d7-a88d-4b36fe2aa74a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8ac63f00-defb-4c91-8f98-cecfc0573d34", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 4.740000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "faa46c9a-167f-4cdb-98db-e470e86b2dd4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c626a600-aa93-458d-b8f8-29e0e50da7fb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 4.980000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영문", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1c8f121c-ef26-4b2a-81d3-b98da3b0ce84", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "35678f69-ff98-4eaa-8f22-9f4a375ab2a8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 5.220000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영문법", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "법", - "start": 49.14, - "end": 49.2, - "confidence": 0.887, - "speaker": 2, - "punctuated_word": "법", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c72fdd72-39b3-40e3-83da-0a1f7a3f120d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3f63f49e-407d-44b2-9394-543eef4963db", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 5.460000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올라온 강의 중에 아마추어를 위한 영문법 강", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - }, - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "법", - "start": 49.14, - "end": 49.2, - "confidence": 0.887, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 강", - "start": 49.38, - "end": 49.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4f05d14e-747d-4400-9feb-8494fe923a98", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8a6c7f11-4ec6-44cb-be95-c2e278d9b36f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 43.98, - "duration": 1.5, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 음, 이번에 새롭게 올", - "words": [ - { - "word": " 음", - "start": 43.98, - "end": 44.04, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 음", - "language": null - }, - { - "word": ",", - "start": 44.22, - "end": 44.28, - "confidence": 0.864, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 44.34, - "end": 44.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "번", - "start": 44.4, - "end": 44.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "번", - "language": null - }, - { - "word": "에", - "start": 44.64, - "end": 44.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 새", - "start": 44.88, - "end": 44.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 새", - "language": null - }, - { - "word": "롭", - "start": 45.0, - "end": 45.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "롭", - "language": null - }, - { - "word": "게", - "start": 45.18, - "end": 45.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 올", - "start": 45.42, - "end": 45.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 올", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "238b88c4-78dd-477a-9445-48eb3e376997", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "93fe4f99-7bd6-4f3c-91cb-e509f1d00cce", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 45.54, - "duration": 4.020000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의", - "words": [ - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "법", - "start": 49.14, - "end": 49.2, - "confidence": 0.887, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 강", - "start": 49.38, - "end": 49.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 49.5, - "end": 49.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c174fdec-c700-4557-ba2a-57485dde239c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "970b922e-088f-41a4-9ec8-32999573a6d2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 45.54, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가", - "words": [ - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "법", - "start": 49.14, - "end": 49.2, - "confidence": 0.887, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 강", - "start": 49.38, - "end": 49.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 49.5, - "end": 49.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "가", - "start": 49.62, - "end": 49.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6b88fd2c-2745-40be-9fc1-e900b8e49c26", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9e8d4576-3b2b-4123-acb3-26f02b261703", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 45.54, - "duration": 4.32, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가 있어", - "words": [ - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "법", - "start": 49.14, - "end": 49.2, - "confidence": 0.887, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 강", - "start": 49.38, - "end": 49.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 49.5, - "end": 49.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "가", - "start": 49.62, - "end": 49.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 있어", - "start": 49.8, - "end": 49.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8edab87e-b6c5-41b1-97bc-3c044e803887", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c80bf876-a533-4c7b-a4a3-190bf6e091a0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 45.54, - "duration": 4.560000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가 있어요", - "words": [ - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "법", - "start": 49.14, - "end": 49.2, - "confidence": 0.887, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 강", - "start": 49.38, - "end": 49.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 49.5, - "end": 49.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "가", - "start": 49.62, - "end": 49.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 있어", - "start": 49.8, - "end": 49.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있어", - "language": null - }, - { - "word": "요", - "start": 50.04, - "end": 50.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9b00690d-da1b-48f6-a011-78d1c324c9db", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e5159469-f008-463b-8b5e-91cef4632527", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 45.54, - "duration": 4.68, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "라온 강의 중에 아마추어를 위한 영문법 강의가 있어요.", - "words": [ - { - "word": "라", - "start": 45.54, - "end": 45.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "온", - "start": 45.66, - "end": 45.72, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "온", - "language": null - }, - { - "word": " 강", - "start": 46.02, - "end": 46.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 46.14, - "end": 46.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 중", - "start": 46.38, - "end": 46.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 중", - "language": null - }, - { - "word": "에", - "start": 46.56, - "end": 46.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 아", - "start": 47.46, - "end": 47.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "마", - "start": 47.64, - "end": 47.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "추", - "start": 47.82, - "end": 47.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "추", - "language": null - }, - { - "word": "어", - "start": 47.94, - "end": 48.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "를", - "start": 48.12, - "end": 48.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 위한", - "start": 48.3, - "end": 48.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 위한", - "language": null - }, - { - "word": " 영", - "start": 48.66, - "end": 48.72, - "confidence": 0.912, - "speaker": 2, - "punctuated_word": " 영", - "language": null - }, - { - "word": "문", - "start": 48.9, - "end": 48.96, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "문", - "language": null - }, - { - "word": "법", - "start": 49.14, - "end": 49.2, - "confidence": 0.887, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 강", - "start": 49.38, - "end": 49.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 49.5, - "end": 49.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "가", - "start": 49.62, - "end": 49.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 있어", - "start": 49.8, - "end": 49.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있어", - "language": null - }, - { - "word": "요", - "start": 50.04, - "end": 50.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 50.16, - "end": 50.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "198c795d-1e06-455f-a159-fc3a9820ae01", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f071ca1a-fd4d-4cc7-8e8a-a8deb64278da", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0a60a90b-1f29-4a1a-bd9e-4922f8fa1124", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bed4a351-a167-4528-9959-693cb44fa433", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 0.17999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "100e3835-ad25-4766-bd0e-ac27ef031071", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "160969c1-e11d-4fb9-9d2a-610fa1d11d7c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 0.5399999999999991, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e9ed2b55-101b-4328-bf2e-76b6ccc84fc8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a5878216-325a-4022-9b67-254cf03ffa21", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 0.720000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ee239a65-1c3a-46dc-b8cd-ea4daba4ee19", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f44748d8-1ad7-4741-a9e2-aaf5fcb67b63", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 0.9000000000000057, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "497cdf42-717c-4ec7-9376-ff14b3baf63a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4d2409f7-ffe1-433c-8c28-cb0b65d2ffa5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 1.0800000000000054, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "96536afd-b820-4e4e-8cce-5d44817b66a7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "edba6b85-e711-49b8-9089-c1cb13a831d0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 1.3200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "84114d88-cd0e-408c-8ff9-cf5894bfe871", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "35e608e6-42a6-47ed-8ee9-8a9805d038fa", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 1.6200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3002c72f-f82c-4c8b-9711-fb9221c43d0a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1cc7c29d-dce4-4cd0-afb5-bd733d3a62ab", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 1.740000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e8714242-93f4-4a2b-b33b-47df926487fc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e55d5457-d070-4fd3-8015-949239a92efb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 2.039999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "54b13397-0fc4-43ca-a249-98adc9fc2fcc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "65e6312a-d9bc-4101-bba4-c95073a86a1d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 2.1600000000000037, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d748244e-9b38-4b07-9a41-2486b73f7088", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "65ff3f7f-ea64-43d3-a672-4376526e8dd8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 2.3400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dff4183d-a355-44ff-9eff-b606500f32a1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5839bf0b-0f25-46a6-a517-f304ecd5b067", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 2.520000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e05fff13-4c66-4ccd-a064-767c6fde51bd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fc4bb41f-d0c0-4dae-a645-db3cdb32aec7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 2.6400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 ", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8be2ac81-7062-4371-b157-17066d61d7bd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d4cd0201-ea6e-453d-a1c9-4f13363a39fc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 2.700000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dddd5e75-614c-4e65-99ca-7a041f00b157", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b91f703f-5633-452c-b493-6db0b2dae09f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 2.8800000000000026, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7a0922f7-4c13-48fa-8e1b-cf3ec5a30250", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "95c66187-d149-4286-8c79-444e230c893d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 3.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8c15779e-2363-4e6b-9917-c10c43bc4ce7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7dd8d8fe-fcd9-4a0d-9373-c0987ba0ae97", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 3.8400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e00f086b-1aca-4508-9b43-4d66e1cc0e92", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4fac2522-ac86-4667-90ad-19b5a6dc3016", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 4.080000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "37779987-43a0-47d4-9a9d-e7db915ca7dc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "62f7f9e6-0cf3-456c-aa14-21b63b56d789", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5ddd560f-90f5-45f4-8f42-118105a0af27", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "682d3f20-73dd-4127-86af-9ea137c5c0b2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 4.380000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e4c3c6a6-8242-4957-9cc1-d96723148a4b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8cf3cc87-2e65-4b93-adcc-b2318b9a3879", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 4.6200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "afee73fc-10cb-4960-9a9b-03ef85bea6b5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "162b4200-94be-409f-97ae-39afb0343fa7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 4.740000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그래", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1f545346-6ae4-4a95-a7ca-064d460b5eef", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c6051884-a0c8-4de4-8436-ba4474eef67c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 4.859999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그래도", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3a9d4ea9-d09a-4c63-b69c-6c84d974ea67", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f6b0130f-a582-418f-b10f-acc999525b53", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 5.160000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트에 문법 부분이 다 맞아서 이 강의는 그래도 무", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - }, - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.22, - "end": 56.28, - "confidence": 0.971, - "speaker": 2, - "punctuated_word": " 무", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fedd05f8-554f-4bc3-b7d5-57e6a58ebbf6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f67b3c4e-f245-4847-ba82-f90c61cccc4f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 51.12, - "duration": 1.0800000000000054, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 레벨 테스트", - "words": [ - { - "word": " 저", - "start": 51.12, - "end": 51.18, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 51.24, - "end": 51.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 레", - "start": 51.6, - "end": 51.66, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 51.78, - "end": 51.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": " 테", - "start": 51.96, - "end": 52.02, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 테", - "language": null - }, - { - "word": "스트", - "start": 52.14, - "end": 52.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "스트", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dec74791-c4fd-4b2d-96fb-4f34a9dc53ed", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c942e591-e6b1-47c1-b157-cef0d0b92163", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 3.960000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d8511a8a-23a8-49ad-8f19-c3bb37586604", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "64d87722-3528-4526-9589-788e51dc583b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9be8f520-3acc-4a16-9898-43cee84af4c7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2b761e34-9d05-4404-aba2-be5c594e7b65", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 4.199999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4cc7000c-4870-40af-9a33-a2338c15ca3a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5f1e6e79-fe9f-4345-9011-61ed7241ff32", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 4.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dfebbe67-3a55-4a08-9615-d965442c00eb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "84bd3c5a-b673-4d31-9faf-724619fb0afa", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 4.739999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "eed44b2a-2dfc-42ef-b264-257ff7501ae5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a139481b-933d-4a58-b58d-825fa35dcfe2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 4.859999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "76aa5ab5-874b-4e0a-9731-534f87b3970c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e7a14682-57f0-4c13-88fa-e79469028d0a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 5.039999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8c88a95b-ee94-4053-854a-b1863985279a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7bce0d49-c48a-452f-88af-dde1b9a97373", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 5.159999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "df56e59e-ce75-46ca-90bd-bd89c4194bc9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d52981af-168a-4e21-9f45-4d03e750463f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 5.460000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠다", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6f1b2232-a745-43e9-98e2-c278d8f2fad1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cfee034d-14a9-4c46-8f60-294a45bd50ce", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 5.699999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠다라는", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3a8bb7e8-11f2-467f-a3f5-bf5b8896b017", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c2152ecf-82ac-4b2c-851d-aa95004c24e3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 5.939999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - }, - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - }, - { - "word": " 생", - "start": 58.26, - "end": 58.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9aaea3ac-8774-4b5f-b9c5-539010470a8b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8a999c51-5214-4166-be45-c07a880d0e7a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 52.38, - "duration": 1.7399999999999949, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "에 문법 부분이 다 맞아서", - "words": [ - { - "word": "에", - "start": 52.38, - "end": 52.44, - "confidence": 0.946, - "speaker": 2, - "punctuated_word": "에", - "language": null - }, - { - "word": " 문", - "start": 52.68, - "end": 52.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 52.8, - "end": 52.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": " 부", - "start": 53.1, - "end": 53.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 53.22, - "end": 53.28, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 53.4, - "end": 53.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 53.58, - "end": 53.64, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "맞", - "start": 53.76, - "end": 53.82, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "맞", - "language": null - }, - { - "word": "아", - "start": 53.94, - "end": 54.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": "서", - "start": 54.06, - "end": 54.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "서", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "71704216-d7de-4099-8b99-fe007358910c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ef7a8be0-2f9e-47cd-a916-57cc82a1f723", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 54.9, - "duration": 3.480000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각", - "words": [ - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - }, - { - "word": " 생", - "start": 58.26, - "end": 58.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 58.32, - "end": 58.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f35eb7bc-e601-4b62-ad2e-02ad47a5f3fc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "10f319fd-9819-4654-8cab-ad3c5f87e831", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 54.9, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이", - "words": [ - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - }, - { - "word": " 생", - "start": 58.26, - "end": 58.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 58.32, - "end": 58.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "이", - "start": 58.56, - "end": 58.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3f754cc7-989b-4b62-a8fa-b05ecee31865", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b1f0b293-e62f-4bc7-94b9-21b19124cdcd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 54.9, - "duration": 3.8999999999999986, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들", - "words": [ - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - }, - { - "word": " 생", - "start": 58.26, - "end": 58.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 58.32, - "end": 58.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "이", - "start": 58.56, - "end": 58.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "들", - "start": 58.74, - "end": 58.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "들", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9b9602c8-77ea-4d12-ae07-32a121c444fa", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "78549b7c-5245-4961-8e59-832e5632553a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 54.9, - "duration": 4.020000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들었", - "words": [ - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - }, - { - "word": " 생", - "start": 58.26, - "end": 58.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 58.32, - "end": 58.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "이", - "start": 58.56, - "end": 58.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "들", - "start": 58.74, - "end": 58.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "들", - "language": null - }, - { - "word": "었", - "start": 58.86, - "end": 58.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "었", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "93dcd9a8-83fe-4c73-85a0-846abebb7c15", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "04a07268-aa56-482e-89d8-d67c4ed33f33", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 54.9, - "duration": 4.259999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들었어요", - "words": [ - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - }, - { - "word": " 생", - "start": 58.26, - "end": 58.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 58.32, - "end": 58.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "이", - "start": 58.56, - "end": 58.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "들", - "start": 58.74, - "end": 58.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "들", - "language": null - }, - { - "word": "었", - "start": 58.86, - "end": 58.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "었", - "language": null - }, - { - "word": "어", - "start": 59.04, - "end": 59.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "요", - "start": 59.1, - "end": 59.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "66c3b852-3976-4888-a720-fc8f47f100ed", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5d2ce37f-cb0d-4966-b0ed-3b785b89b2da", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 54.9, - "duration": 4.380000000000003, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이 강의는 그래도 무난하게 들어볼 수 있겠다라는 생각이 들었어요.", - "words": [ - { - "word": " 이", - "start": 54.9, - "end": 54.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": " 강", - "start": 55.14, - "end": 55.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 55.26, - "end": 55.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "는", - "start": 55.44, - "end": 55.5, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 그", - "start": 55.68, - "end": 55.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "래", - "start": 55.8, - "end": 55.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": "도", - "start": 55.92, - "end": 55.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": " 무", - "start": 56.28, - "end": 56.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 무", - "language": null - }, - { - "word": "난", - "start": 56.4, - "end": 56.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "난", - "language": null - }, - { - "word": "하게", - "start": 56.52, - "end": 56.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하게", - "language": null - }, - { - "word": " 들어", - "start": 56.82, - "end": 56.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": "볼", - "start": 57.06, - "end": 57.12, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 57.18, - "end": 57.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 57.36, - "end": 57.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 57.48, - "end": 57.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "다", - "start": 57.78, - "end": 57.84, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": "라는", - "start": 58.02, - "end": 58.08, - "confidence": 0.987, - "speaker": 2, - "punctuated_word": "라는", - "language": null - }, - { - "word": " 생", - "start": 58.26, - "end": 58.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 58.32, - "end": 58.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "이", - "start": 58.56, - "end": 58.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "들", - "start": 58.74, - "end": 58.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "들", - "language": null - }, - { - "word": "었", - "start": 58.86, - "end": 58.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "었", - "language": null - }, - { - "word": "어", - "start": 59.04, - "end": 59.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "어", - "language": null - }, - { - "word": "요", - "start": 59.1, - "end": 59.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 59.22, - "end": 59.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "717a2aac-9b5b-4729-848e-d09ceaec3ebd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1ebab8c0-4399-45c9-91c8-cc956fa55da7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 0.05999999999999517, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2017c2b3-4471-47ca-9f6b-575dba585419", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e9116aa2-7b2d-4429-b5bd-ba6fe753bdfd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 0.17999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c9716be4-56c9-4f4a-a5fd-e9b24296ff15", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "70107696-1e85-4877-a036-eef8fd568a75", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 0.29999999999999716, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "01bec70c-12b3-46bb-b98c-86b5da3ce0c8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "36f9a52b-9e41-48a3-9cd8-40f55baf8daa", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 0.7800000000000011, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1c229333-dd0a-4fd4-9cb6-05c72cd9679c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "36818def-96a4-4ea5-bdd5-4082a799b933", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 1.3200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "07a2ad13-352e-445e-8cca-2d0b9c976309", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "15da668b-1110-4e5c-bd8a-bedce405a95f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 1.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5e946abc-37ba-48bf-b7f5-8841c294c4bd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bea3cbc5-858d-478b-bed0-afdd11ace458", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 1.8599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사,", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d1535cb7-3b4c-462d-8d06-60249a346b7b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "401a00fe-c391-4e13-86a9-bfd8e46c0650", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 2.1599999999999966, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4e872deb-92c4-408b-a6c8-26f2c8cc283f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c5ef8fba-ae31-47ea-bca1-f9a0b1023978", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 2.3399999999999963, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9d533e27-78d3-416e-aa2c-ec029c8a7532", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cbf98d1a-7de6-4a62-b13b-93532b4236c4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 2.519999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "56b827af-e102-400a-8f62-001cb9b09d18", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "be4c928a-ad41-4fb8-8f8a-43f43d4a98dd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 2.6999999999999957, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f1bd118d-eea3-46b4-9d20-a54de07451a3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f7a91e63-963b-4455-aecd-eadb8d25c7d8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 2.9399999999999977, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8ce4cab8-8624-4b6e-99ab-e65caa29334a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cb8313a4-67c6-4c21-8d85-a13a91c2cd47", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 3.1199999999999974, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5da9f00a-ec83-4788-8488-72b7b91c22a9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "81fdfcdf-48ac-4d93-a958-4073a6640845", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 3.239999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a277dc21-d780-48f9-9a45-68aedcb8a62c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8e40cf69-0df6-4ac6-adee-ba3c9c3fffbb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 3.479999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cb8d46f4-8015-4198-b80c-60d8a81a5134", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "30dfb662-f2cb-4833-bdb2-42c5ec6ebc90", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 3.6599999999999966, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "647b8dc7-ff5e-4906-898d-e60b1b0aa056", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "11bb56de-1477-408d-96cc-d10c3a864a16", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 3.8999999999999986, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fcb3c8ca-8d64-4e3a-96ac-2c9a4eb8df5a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f6ac9f88-245c-4dc8-8947-64bc0e8ac921", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b22fe398-c5c8-4082-ba96-9a6ab9d15b0b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d1acfaad-c4f3-4712-9fd2-15a68727f408", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8a18b1dd-61dc-48b4-8824-7f68687df970", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "682d9304-4731-418c-bc44-62a113fd811f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 4.560000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각할", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c67b9a66-810c-4805-a3c8-be75a25f0f91", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f9794ad0-b8f6-49ed-8fc5-cdba78dee1c0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 4.799999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각할 수", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f17c4146-bf54-4f7f-b490-1c6e17d2b9a5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f7f47b87-f9e5-4423-b7bc-9b95e4292832", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 5.099999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재 분사, 과거 분사라든지 이런 걸 생각할 수 있", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "18f557a6-1b1e-488f-8b88-7868841e607e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e65dbbc0-1471-48a8-8bd2-d2358c1f6dfb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 60.06, - "duration": 0.7800000000000011, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 예를 들어 현재", - "words": [ - { - "word": " 예", - "start": 60.06, - "end": 60.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 예", - "language": null - }, - { - "word": "를", - "start": 60.18, - "end": 60.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 들어", - "start": 60.3, - "end": 60.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 들어", - "language": null - }, - { - "word": " 현재", - "start": 60.78, - "end": 60.84, - "confidence": 0.992, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d6d00f11-2dc3-46c6-9d18-5af5d4d17871", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3d50ec6b-c41a-48fc-ba96-47ce354a833f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 4.020000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f29dc5fa-516e-478f-ad9e-fb689454f4e3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1aa894d4-d22a-4def-9c49-e04aacb76694", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 4.380000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데,", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5fb1420e-8231-4429-9c8e-e622e1935867", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "24053d8b-e08f-4b31-88d4-6b5a9de73bb8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 5.160000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8fc1090e-49b5-4738-af83-b4d3856361cf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a194e64a-a218-49ab-bc8f-5e3e58b97432", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 5.279999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "96ce524d-7a36-4a62-9ab4-30e5028e48aa", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "31e7c4de-51ed-421e-a2db-7a7e775ba311", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 5.399999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "443df48b-cdc5-4fc5-b0c8-002155019c15", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a2a49e01-6663-42b6-a1dd-5bbfb062bcc9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 5.699999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게 제", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4cf6a42a-2b8e-43f7-8f00-84fac53f4a19", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "aee530ce-4dbe-49ca-a3a4-34a704e75402", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 5.82, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게 제가", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4b7ff4e8-b921-4205-ac57-c3c710b0d230", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0d830f03-f34e-494b-bc7f-6278ceee9e9d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 5.999999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ae534a52-5421-4b6d-96d7-1fdc062da320", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "44f98cc8-55d4-4706-a02e-a62d0ec5ab4f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 61.32, - "duration": 1.9799999999999969, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 분사, 과거 분사라든지", - "words": [ - { - "word": " 분", - "start": 61.32, - "end": 61.38, - "confidence": 0.822, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 61.5, - "end": 61.56, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": ",", - "start": 61.86, - "end": 61.92, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 과", - "start": 62.16, - "end": 62.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 과", - "language": null - }, - { - "word": "거", - "start": 62.34, - "end": 62.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "거", - "language": null - }, - { - "word": " 분", - "start": 62.52, - "end": 62.58, - "confidence": 0.981, - "speaker": 2, - "punctuated_word": " 분", - "language": null - }, - { - "word": "사", - "start": 62.7, - "end": 62.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "사", - "language": null - }, - { - "word": "라", - "start": 62.94, - "end": 63.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "든", - "start": 63.12, - "end": 63.18, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 63.24, - "end": 63.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1bd15742-5156-449f-9fd2-42f1180c0742", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "582d894c-a229-4f1a-97da-f412acbc4796", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 3.8399999999999963, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a4a7e93d-5e76-490e-8de3-1728eecd2fdc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d378b093-e75a-40f7-9563-40b16035fb7a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 4.20000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "098818fd-4781-4d11-9598-c89e64664e50", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c2b61e19-f217-41eb-a652-ef1bf2e7b2ed", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 4.500000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7a3e2676-41e5-41e1-b01d-17e07a8e2da3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ebea6717-cece-4aef-92bd-c68661cbf1d4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 4.740000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2ff56065-9b9a-4492-9e17-d6d313b6a8bd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0f7a9689-5643-48c6-9aa2-7b5d20413d9a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 4.8600000000000065, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2ba78bfc-578e-43a7-8793-42078a780a4f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "52ab7fb3-b714-423d-af2a-b9ebd5bdfe89", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 5.039999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ac9a78f6-70bf-408e-bb5f-a11d46f07af5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fba17de8-7109-4f78-9b4b-aebba05840c4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 5.220000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b7e8fe4b-4a9a-4a57-862b-b119a0d7a808", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "df29fa8d-e90f-4dd2-9d9b-c5a40c1734bf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 5.399999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fba74b1a-7593-4b9b-bb0b-1639d409ce60", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a4290f67-8e34-4c81-8ea5-00bb7525b9fe", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 5.460000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도 ", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d0882d7f-f103-47db-aeb4-d5dd6ebaa052", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b522bcd3-e864-42b7-97d2-4bdaa2483de5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 5.640000000000008, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도 너무", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "너", - "start": 69.0, - "end": 69.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 69.06, - "end": 69.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7306be43-cbd9-4e22-8976-b34dc39d4a44", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b72a035d-4318-4d8e-8a91-c019feeafb02", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 5.880000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠는데, 이렇게 제가 생각한 것과는 달라도 너무 달", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - }, - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "너", - "start": 69.0, - "end": 69.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 69.06, - "end": 69.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": " 달", - "start": 69.3, - "end": 69.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 달", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "07b6a4d2-a324-4271-8d20-fc1be5dae38d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1da1c950-fd7b-4f3f-b4d6-def9b835e34f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 63.48, - "duration": 1.8600000000000065, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 이런 걸 생각할 수 있겠", - "words": [ - { - "word": " 이", - "start": 63.48, - "end": 63.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 63.66, - "end": 63.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 걸", - "start": 63.9, - "end": 63.96, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 걸", - "language": null - }, - { - "word": " 생", - "start": 64.08, - "end": 64.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 64.2, - "end": 64.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "할", - "start": 64.56, - "end": 64.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "할", - "language": null - }, - { - "word": " 수", - "start": 64.8, - "end": 64.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 65.1, - "end": 65.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "겠", - "start": 65.28, - "end": 65.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "겠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3139499d-e504-46bf-9a26-dec022c713c1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5b9cfb3b-2158-44cc-8a80-cc214143c146", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 65.64, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달", - "words": [ - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "너", - "start": 69.0, - "end": 69.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 69.06, - "end": 69.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": " 달", - "start": 69.3, - "end": 69.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 달", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9adc7fb4-ac8e-48a6-86fd-b52261f5b0dd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0f049e73-5ec5-42c6-a784-b00f5aec33bd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 65.64, - "duration": 3.9000000000000057, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달라", - "words": [ - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "너", - "start": 69.0, - "end": 69.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 69.06, - "end": 69.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": " 달", - "start": 69.3, - "end": 69.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 69.48, - "end": 69.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9e79f5f0-a6f8-43a7-a926-5b717214ae22", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "29aa5892-8718-4b56-bbe6-101cd9da1d52", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 65.64, - "duration": 4.019999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달라요", - "words": [ - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "너", - "start": 69.0, - "end": 69.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 69.06, - "end": 69.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": " 달", - "start": 69.3, - "end": 69.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 69.48, - "end": 69.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "요", - "start": 69.6, - "end": 69.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b3dd5f92-081f-4f35-b91d-94d3ff44a380", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "be039ec8-6d93-4cc0-b670-588f2a65484c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 65.64, - "duration": 4.200000000000003, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "는데, 이렇게 제가 생각한 것과는 달라도 너무 달라요.", - "words": [ - { - "word": "는데,", - "start": 65.64, - "end": 65.7, - "confidence": 0.953, - "speaker": 2, - "punctuated_word": "는데,", - "language": null - }, - { - "word": " 이", - "start": 66.42, - "end": 66.48, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "렇", - "start": 66.54, - "end": 66.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "렇", - "language": null - }, - { - "word": "게", - "start": 66.66, - "end": 66.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 제", - "start": 66.96, - "end": 67.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 67.08, - "end": 67.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 생", - "start": 67.2, - "end": 67.26, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 67.26, - "end": 67.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": "한", - "start": 67.62, - "end": 67.68, - "confidence": 0.93, - "speaker": 2, - "punctuated_word": "한", - "language": null - }, - { - "word": " 것", - "start": 67.92, - "end": 67.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 것", - "language": null - }, - { - "word": "과", - "start": 68.16, - "end": 68.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": "는", - "start": 68.28, - "end": 68.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 달", - "start": 68.46, - "end": 68.52, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 68.64, - "end": 68.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "도", - "start": 68.82, - "end": 68.88, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "도", - "language": null - }, - { - "word": "너", - "start": 69.0, - "end": 69.06, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "너", - "language": null - }, - { - "word": "무", - "start": 69.06, - "end": 69.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "무", - "language": null - }, - { - "word": " 달", - "start": 69.3, - "end": 69.36, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 달", - "language": null - }, - { - "word": "라", - "start": 69.48, - "end": 69.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "라", - "language": null - }, - { - "word": "요", - "start": 69.6, - "end": 69.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 69.78, - "end": 69.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c9136e50-df22-44d9-b5b6-881dc64fd1e1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4ccaca70-c2a6-4c08-8a38-c1d9424adbc7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d1268570-8e40-4f37-9f4a-658c59ac43b6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1aa5b180-2870-44a8-875b-e12e02f7e4b1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 0.23999999999999488, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a641fc70-6808-489c-8aed-c0a5210b47ab", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d29f4730-885a-4643-8a65-38389fad67af", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 0.35999999999999943, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e395d242-4e10-4d1d-b6d2-1e11ee71282d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "82cf3aeb-2401-4fd8-9c9e-ccb894b0e4a5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 0.480000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부분", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 70.98, - "end": 71.04, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4b3e5f9f-7928-4fb2-86d4-5ac964ccb5d1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e94686a1-b862-40f9-b151-dd80c02b8a8a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 0.6599999999999966, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부분이", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 70.98, - "end": 71.04, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 71.16, - "end": 71.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "33efd92f-9e55-46b0-a1a8-5d4571b0689f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "89f07039-6fb6-42ab-9b8f-46a78bb59110", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 0.8999999999999915, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부분이 다", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 70.98, - "end": 71.04, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 71.16, - "end": 71.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 71.4, - "end": 71.46, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2210a5f2-e332-4816-b8d6-f0c5aa6f3c52", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "47ee5c33-7f23-49b0-ab8e-61616bd9a4f0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 1.019999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부분이 다를", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 70.98, - "end": 71.04, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 71.16, - "end": 71.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 71.4, - "end": 71.46, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다", - "language": null - }, - { - "word": "를", - "start": 71.52, - "end": 71.58, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "798ea9e5-530d-4de7-8f5f-ace5b15a84b7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "dad17fc5-03a5-45ff-9874-fb27c77779c2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 1.1400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부분이 다를까", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 70.98, - "end": 71.04, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 71.16, - "end": 71.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 71.4, - "end": 71.46, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다", - "language": null - }, - { - "word": "를", - "start": 71.52, - "end": 71.58, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "까", - "start": 71.64, - "end": 71.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "까", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7005c307-3223-4b59-950e-f621be4dbc92", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c46c25b4-b848-48a6-ac23-e9f1edfc096b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 1.259999999999991, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부분이 다를까요", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 70.98, - "end": 71.04, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 71.16, - "end": 71.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 71.4, - "end": 71.46, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다", - "language": null - }, - { - "word": "를", - "start": 71.52, - "end": 71.58, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "까", - "start": 71.64, - "end": 71.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 71.76, - "end": 71.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1682b07e-2d00-47a4-9684-62c9d1464e89", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9e6e4492-dc1c-44c8-bbd8-ab8acd3607b2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 70.56, - "duration": 1.3799999999999955, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어느 부분이 다를까요?", - "words": [ - { - "word": " 어", - "start": 70.56, - "end": 70.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "느", - "start": 70.74, - "end": 70.8, - "confidence": 0.998, - "speaker": 1, - "punctuated_word": "느", - "language": null - }, - { - "word": " 부", - "start": 70.86, - "end": 70.92, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "분", - "start": 70.98, - "end": 71.04, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "분", - "language": null - }, - { - "word": "이", - "start": 71.16, - "end": 71.22, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "이", - "language": null - }, - { - "word": " 다", - "start": 71.4, - "end": 71.46, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다", - "language": null - }, - { - "word": "를", - "start": 71.52, - "end": 71.58, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "까", - "start": 71.64, - "end": 71.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "까", - "language": null - }, - { - "word": "요", - "start": 71.76, - "end": 71.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "요", - "language": null - }, - { - "word": "?", - "start": 71.88, - "end": 71.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "?", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "079b2ef1-d221-4444-803c-22d26386c888", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ee885a8d-b211-4e0f-ad5b-8442254666b7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "87300fdc-ba42-4797-913c-7e3c9c6ea302", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4cb45630-094c-4a94-9972-5d44b7688414", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 0.35999999999999943, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f5d6297a-b19a-4559-b92c-47dea51609a5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6c436488-1efa-4bf0-a9a3-610fe4e66dd8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 0.6599999999999966, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b0db8905-0ed2-4059-b80a-5f679d59ed4d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6932556c-4ef7-4f8b-a2f1-e18e3964dc26", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 0.7800000000000011, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d82ac7fb-eb52-41ee-97cf-2c92fe3f1a51", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "88843e72-34c3-4ab5-be94-51e8b18419f6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 1.019999999999996, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ec9f2a99-ba0a-498a-8c2d-db69a1c708c5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4fd85007-2828-45fb-bdba-dcbb479c05a0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 1.2000000000000028, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3d8e488a-7392-46c2-86b3-23d47357f027", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5d04858a-42cd-434c-b600-4f57a68d8d7a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 1.3799999999999955, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9976fd3b-1b19-446b-830e-be4f25ac0228", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b90691ef-090d-41d9-a53e-3c836ba5c90e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 1.5600000000000023, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8994e79f-ef66-41dd-a889-4de3ae1f5328", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c7d07087-a331-4408-9405-a6ab2c8ebc98", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 1.7999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dbfc3ca6-9fd2-4619-8241-a6f8ee2c7df1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "143367dd-c9a7-4f60-adb5-77dde69fc1ef", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 2.039999999999992, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5909f14b-13bb-4ced-93d6-15edda94e2d9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e2dcefce-687e-4296-82fa-971853463563", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 2.4599999999999937, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6fbe3af6-aad5-4e79-af6d-c4f51bdbf57c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a0d47ec7-3536-49f7-93dc-796f99bdb5f0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 2.5799999999999983, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2ced65a7-8448-4dec-837d-9b69879c7581", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c121d6e4-9a1e-42dd-80f6-6d77dcb2bf7b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 2.760000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "099e0062-eabc-4969-aca6-5174504a00be", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d052354a-a5be-4814-84fa-f015aa28656d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 2.9399999999999977, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9d24d8de-d680-4858-9fe3-6a41a84bda49", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "763a103d-0a4a-45b1-82ca-d1bad8ebbff9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 3.1799999999999926, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fad52e7b-649e-4864-b2e3-fafd13daff16", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "dd346505-016b-44c8-869f-c942e87b7a6d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 3.3599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ac56abac-794a-4cd5-8f3f-8dcfc41f2ace", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "398ee701-8960-45dd-acdd-db557aec4bdc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 3.480000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2d28808a-1b01-449f-9cb1-3f0f70e4521d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e792719a-0cfd-46fa-b8c6-4a5406aba95e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지,", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5e4e5a96-6e2a-4cda-ae8e-df2d13fe7a79", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d70c3d95-c19f-42b3-9890-00efe48e26e7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6a1670b9-57c8-4e86-8210-9252ee290cc4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bca7005d-0a1c-4671-9794-e0fdec5297ca", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 4.319999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a72851b2-97e5-4e41-b464-f047fc8231ca", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "328eb75e-6232-404e-8306-84ab3fd1c31e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 4.560000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "12949376-8c00-458a-ab7e-db318b249004", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "636a5498-f361-4c14-93e8-3dbad5c4ff23", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 4.799999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b160cb4a-40d1-4bfb-b9fa-8f6ee9cdd154", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8d2465cd-846f-4367-8281-30bf680407d6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 4.980000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6329a6b8-ec48-4225-b31e-9c4fc32d0601", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bae0e5e1-3f04-4c61-93e5-5a6d1db8b9e0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 5.159999999999997, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의 끝", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "21d5452a-4b07-4a93-af79-bffc7f2b57f3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "44f7f955-22d5-44ff-9872-fb7ccc39cfed", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 5.280000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의 끝날", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "618a02ac-48e6-4bc8-8ea3-b92eb79f585e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "341e9e15-5d10-48c2-9b53-81a310e1e519", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 5.459999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는 저를 구로 변환이라든지, 이런 게 강의 끝날 때", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - }, - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c5e235de-ad1e-4f15-9eae-751ee50d16fe", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ef0134e1-4336-4018-8e61-940ba7999eef", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 72.42, - "duration": 1.5600000000000023, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 대학생 수준 같아 보이는", - "words": [ - { - "word": " 대학", - "start": 72.42, - "end": 72.48, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": " 대학", - "language": null - }, - { - "word": "생", - "start": 72.72, - "end": 72.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "생", - "language": null - }, - { - "word": " 수", - "start": 73.02, - "end": 73.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 73.14, - "end": 73.2, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": " 같", - "start": 73.38, - "end": 73.44, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 같", - "language": null - }, - { - "word": "아", - "start": 73.56, - "end": 73.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "아", - "language": null - }, - { - "word": " 보", - "start": 73.74, - "end": 73.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 보", - "language": null - }, - { - "word": "이는", - "start": 73.92, - "end": 73.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7a890d86-0c70-47d0-9609-d560a9d08c37", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "71236b40-08ec-4cca-91a0-eb3a91b51ec5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 3.960000000000008, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a60ab47e-3bcb-472b-a105-f1e15917e3a9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6db21268-ef22-4d0d-845c-e3c2ca36fda0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bb86cb2e-7e86-42da-bc1b-e6dc334db9bf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2fd4055f-fa33-44db-84d9-28b17debf74c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 4.38000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d0c88d73-139d-418f-8e9c-79068836a58a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "83290693-4367-4d43-a12c-ab3048c98e5c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 4.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "772ffe17-c15f-4789-99c6-666b0597aabd", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "39f6cab8-de4b-4ce3-a9a2-8121a4faee14", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 4.680000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f2005b1b-33d3-474f-95f3-fbf44c9a71c7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "da51e726-9987-49fd-a7fa-bbf48272df03", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 4.980000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 ", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d7f24c9e-5794-441a-a540-e42b89ac0a26", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5a3e98cb-65db-4f09-9e13-15ae900dd0f7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 5.1000000000000085, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "228360f1-1276-4f64-b61e-664d97cfed4c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "20af09f6-3f10-404f-b074-215fd58e13f9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 5.280000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fe302c23-2644-4cc1-95de-bfd4c3de0527", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7e74d037-7f19-43cd-885a-fbe9603f51be", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 5.400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1f09a8a6-4719-48ac-9933-641f66017592", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "dc50233d-921e-4059-9f40-3d65093f2170", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 5.640000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의 탕", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탕", - "start": 79.8, - "end": 79.8, - "confidence": 0.377, - "speaker": 2, - "punctuated_word": "탕", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d195ed15-26b1-44fd-af19-a379582d9ef3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f17c27a5-b142-4811-966e-bdbce9202d7e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 5.640000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의 탐", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "58e5c57e-9979-4220-aa45-6f03e38de025", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6959995a-e0d9-48d0-9c68-d16198c423d2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 5.820000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지, 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - }, - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f50e86cd-09de-41a5-970c-f4c4b671801b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8151398c-baf7-4a47-92f6-511779d70835", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 74.16, - "duration": 1.740000000000009, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저를 구로 변환이라든지", - "words": [ - { - "word": " 저", - "start": 74.16, - "end": 74.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "를", - "start": 74.4, - "end": 74.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 구", - "start": 74.82, - "end": 74.88, - "confidence": 0.756, - "speaker": 2, - "punctuated_word": " 구", - "language": null - }, - { - "word": "로", - "start": 74.94, - "end": 75.0, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "로", - "language": null - }, - { - "word": " 변", - "start": 75.12, - "end": 75.18, - "confidence": 0.985, - "speaker": 2, - "punctuated_word": " 변", - "language": null - }, - { - "word": "환", - "start": 75.3, - "end": 75.36, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "환", - "language": null - }, - { - "word": "이라", - "start": 75.54, - "end": 75.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이라", - "language": null - }, - { - "word": "든", - "start": 75.72, - "end": 75.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "든", - "language": null - }, - { - "word": "지", - "start": 75.84, - "end": 75.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "89552d5a-634e-4106-b6c1-ba7ed37ef6ce", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "24e061e1-1af6-4ec5-aa2f-e2356714b150", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 3.9000000000000057, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4b66cc43-5736-4554-bffe-c5cc6e11edac", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e6305350-0592-4f85-ac46-a6cbd6f5f5cc", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "01cbb9fa-f88d-4308-beac-396c848f8b80", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3600d63d-c6dd-45e6-85c6-9e5c053f8ae3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 4.320000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d88090e8-c72f-4ff1-b7a8-25a77efdc7a6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c6540961-f451-444d-84c8-dff5bc2d2bc5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 4.6200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "861fc6e5-f5d6-43ce-8701-8d279b866e44", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "12ee974a-025c-43f2-82ea-f54fd9a1cdfe", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ebd6d21f-77e1-44b4-8a1a-6ea8d4b6af7a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "170095ca-5d88-4a42-9f27-c99dd314b221", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 5.340000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이런", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "aa37103d-75cb-4a46-8b04-6ea424abc623", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "267b9e82-a299-4bce-8cc8-227aefd60389", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 5.579999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이런 문", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "46287a18-1dd7-4754-88a3-3d29330340ef", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "512f6850-5ae2-4ea5-8498-39a58a35c92d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 5.820000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마다 나오는 잠깐의 탐과 학습이나 이런 문제", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - }, - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7c6e8a2c-2170-45f7-8a1e-702149f04df7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7d831622-f3de-49e1-bb80-155a934888c2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 76.08, - "duration": 2.0400000000000063, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": ", 이런 게 강의 끝날 때마", - "words": [ - { - "word": ",", - "start": 76.08, - "end": 76.14, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": ",", - "language": null - }, - { - "word": " 이", - "start": 76.5, - "end": 76.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 76.68, - "end": 76.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 게", - "start": 76.92, - "end": 76.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 게", - "language": null - }, - { - "word": " 강", - "start": 77.16, - "end": 77.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 77.34, - "end": 77.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 끝", - "start": 77.52, - "end": 77.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 끝", - "language": null - }, - { - "word": "날", - "start": 77.64, - "end": 77.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "날", - "language": null - }, - { - "word": " 때", - "start": 77.82, - "end": 77.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 때", - "language": null - }, - { - "word": "마", - "start": 78.06, - "end": 78.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "마", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d1824e53-a5e4-47ee-b01c-17ab590a6b27", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5d134a23-ca64-45f1-9de1-a5e6dcb1e4a3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "579ff6a1-7eb5-4fe0-8c97-a4bf0bf4c224", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8e58dacb-0c90-4638-9513-976cd05d0071", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 4.139999999999986, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 ", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a2849830-2862-453d-b0ac-5f5c0d2b551f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "610b9aee-c390-4924-840e-bcd264eea514", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 4.259999999999991, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6cbed81b-3d5c-450e-9fb2-3adb6485da9d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a7a8dd1c-5001-4d6f-b491-d3452ef794c1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 4.439999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "26ab2fbc-1d2b-4228-b2f3-3e21b0092045", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7013363b-49e7-46ce-91ea-7f5ed625df7b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 4.679999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "29bc00d1-deb4-4399-a50d-b57508ee7203", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b6331bdb-7905-4612-97ca-917cd73ac48a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 4.859999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "69201bec-cb36-445b-b77d-a5f10d71a5fb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ae14d602-f67d-4075-958f-4037965fa806", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상 기", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "585f7926-65ea-42b1-9841-6c69c8307544", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3160c809-ff87-4313-b07a-9ca0df74dc42", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 5.339999999999989, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상 기준", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9d4b6065-8d70-40c1-a397-4a1411727eaa", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f484d9d5-0a29-4bd2-a729-4ed79372019e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 5.639999999999986, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과 학습이나 이런 문제를 풀면 항상 기준점", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - }, - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d5ec4b7f-2e73-43a4-b331-b3659f2f5bda", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8db61e37-f1fe-4674-9a18-a832771b53b7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 78.18, - "duration": 1.7999999999999972, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "다 나오는 잠깐의 탐과", - "words": [ - { - "word": "다", - "start": 78.18, - "end": 78.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 나", - "start": 78.48, - "end": 78.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "오", - "start": 78.6, - "end": 78.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "오", - "language": null - }, - { - "word": "는", - "start": 78.78, - "end": 78.84, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": "잠", - "start": 79.2, - "end": 79.26, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "잠", - "language": null - }, - { - "word": "깐", - "start": 79.38, - "end": 79.44, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "깐", - "language": null - }, - { - "word": "의", - "start": 79.5, - "end": 79.56, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": "탐", - "start": 79.8, - "end": 79.8, - "confidence": 0.484, - "speaker": 2, - "punctuated_word": "탐", - "language": null - }, - { - "word": "과", - "start": 79.92, - "end": 79.98, - "confidence": 0.758, - "speaker": 2, - "punctuated_word": "과", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3641bddc-9d4f-4efc-ae65-5970ef8ae78f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1cadd7dd-f350-4823-b78f-746ee099bfd8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 3.6599999999999966, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b25b229d-7cac-4b2a-81fe-50e0b5f51e96", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "15f3ab65-11cb-49db-ba4a-dd8993258a31", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 7", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4abafb0a-8f10-4c9e-895c-31ebd6b3f669", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c07a8f1f-cfcd-4e3a-b707-b5a1025103dd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 4.38000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e6c6bd8b-304f-4f69-b26a-58bd42d95d39", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6fd97b1f-dac6-423d-adc5-05dd445f78f2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 4.6200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "47a8927a-43f5-4512-bdf8-308f550b949c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5b406623-ee1f-4f19-808e-7e8639ae25e1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 4.920000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1559d213-70a9-498e-bbeb-5d887a51ec42", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ed3a7ef0-b64c-4255-ab77-9fe108d074b0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 5.040000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "048b835c-eccf-493f-a729-b62c99129006", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4977c1d7-24a7-43a3-b7e8-c34e50a26a07", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0509d5d8-52af-40e5-9d52-7a1446a51a12", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3adbbb85-7c52-4a09-bf1a-ad2dd678670b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 5.460000000000008, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "63a6b090-813a-48dd-a573-92c70552dbe3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2dee08be-0539-4b49-83a7-b037b7ae840f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 5.579999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - }, - { - "word": "가", - "start": 85.68, - "end": 85.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "413adb71-70f3-45d7-a384-6ac9255bb977", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "061bf804-ea5e-470c-bfcb-379fad0a2ed8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 5.700000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가 계", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - }, - { - "word": "가", - "start": 85.68, - "end": 85.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 계", - "start": 85.8, - "end": 85.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 계", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1b9bb3ff-d74a-46b4-a4aa-a188a09cd9e9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2f37156f-e9ae-4e0f-b88c-f3289e513391", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 5.820000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가 계속", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - }, - { - "word": "가", - "start": 85.68, - "end": 85.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 계", - "start": 85.8, - "end": 85.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 계", - "language": null - }, - { - "word": "속", - "start": 85.92, - "end": 85.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "속", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "17219a7d-53bb-43d8-9503-0722a48395e8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4884f95b-95b8-4a72-8598-e5ce8abd89cf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 6.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제를 풀면 항상 기준점 70점 아래 점수가 계속 나", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - }, - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - }, - { - "word": "가", - "start": 85.68, - "end": 85.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 계", - "start": 85.8, - "end": 85.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 계", - "language": null - }, - { - "word": "속", - "start": 85.92, - "end": 85.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "속", - "language": null - }, - { - "word": " 나", - "start": 86.1, - "end": 86.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6ea0ebb1-2b17-48bf-90e8-524f449fd221", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2f36eeb9-1b82-48ba-b5b3-95a78f325bb6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 80.16, - "duration": 1.740000000000009, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 학습이나 이런 문제", - "words": [ - { - "word": " 학", - "start": 80.16, - "end": 80.22, - "confidence": 0.97, - "speaker": 2, - "punctuated_word": " 학", - "language": null - }, - { - "word": "습", - "start": 80.34, - "end": 80.4, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "이나", - "start": 80.64, - "end": 80.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이나", - "language": null - }, - { - "word": " 이", - "start": 81.24, - "end": 81.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 이", - "language": null - }, - { - "word": "런", - "start": 81.36, - "end": 81.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 문", - "start": 81.6, - "end": 81.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "제", - "start": 81.84, - "end": 81.9, - "confidence": 0.991, - "speaker": 2, - "punctuated_word": "제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "dd0f1216-75d4-48a8-98ec-322c5e9ae01c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "44b972c6-a317-40d1-95b4-b01162da4729", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 82.2, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "를 풀면 항상 기준점 70점 아래 점수가 계속 나와", - "words": [ - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - }, - { - "word": "가", - "start": 85.68, - "end": 85.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 계", - "start": 85.8, - "end": 85.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 계", - "language": null - }, - { - "word": "속", - "start": 85.92, - "end": 85.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "속", - "language": null - }, - { - "word": " 나", - "start": 86.1, - "end": 86.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "와", - "start": 86.22, - "end": 86.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "와", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f0a152ed-128b-4232-b492-be4a0f64bf6a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d670557b-38eb-4fc3-a291-5f31cc24df80", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 82.2, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "를 풀면 항상 기준점 70점 아래 점수가 계속 나와요", - "words": [ - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - }, - { - "word": "가", - "start": 85.68, - "end": 85.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 계", - "start": 85.8, - "end": 85.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 계", - "language": null - }, - { - "word": "속", - "start": 85.92, - "end": 85.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "속", - "language": null - }, - { - "word": " 나", - "start": 86.1, - "end": 86.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "와", - "start": 86.22, - "end": 86.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "와", - "language": null - }, - { - "word": "요", - "start": 86.34, - "end": 86.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "95d869b8-ad6a-462f-b511-7e4fd50a9b97", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d1297d01-dfbe-4a2e-9121-7997952f8295", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 82.2, - "duration": 4.3799999999999955, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "를 풀면 항상 기준점 70점 아래 점수가 계속 나와요.", - "words": [ - { - "word": "를", - "start": 82.2, - "end": 82.26, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "풀", - "start": 82.38, - "end": 82.44, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": "풀", - "language": null - }, - { - "word": "면", - "start": 82.56, - "end": 82.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "면", - "language": null - }, - { - "word": " 항", - "start": 82.8, - "end": 82.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 항", - "language": null - }, - { - "word": "상", - "start": 82.98, - "end": 83.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "상", - "language": null - }, - { - "word": " 기", - "start": 83.34, - "end": 83.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "준", - "start": 83.46, - "end": 83.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "준", - "language": null - }, - { - "word": "점", - "start": 83.76, - "end": 83.82, - "confidence": 0.852, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 7", - "start": 84.3, - "end": 84.36, - "confidence": 0.975, - "speaker": 2, - "punctuated_word": " 7", - "language": null - }, - { - "word": "0", - "start": 84.48, - "end": 84.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "0", - "language": null - }, - { - "word": "점", - "start": 84.72, - "end": 84.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "점", - "language": null - }, - { - "word": " 아", - "start": 85.02, - "end": 85.08, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 아", - "language": null - }, - { - "word": "래", - "start": 85.14, - "end": 85.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "래", - "language": null - }, - { - "word": " 점", - "start": 85.32, - "end": 85.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 점", - "language": null - }, - { - "word": "수", - "start": 85.56, - "end": 85.62, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "수", - "language": null - }, - { - "word": "가", - "start": 85.68, - "end": 85.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 계", - "start": 85.8, - "end": 85.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 계", - "language": null - }, - { - "word": "속", - "start": 85.92, - "end": 85.98, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "속", - "language": null - }, - { - "word": " 나", - "start": 86.1, - "end": 86.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 나", - "language": null - }, - { - "word": "와", - "start": 86.22, - "end": 86.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "와", - "language": null - }, - { - "word": "요", - "start": 86.34, - "end": 86.4, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 86.52, - "end": 86.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4ae55f4c-0470-42d6-adc8-661b1e90efe8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7c4f8b95-2df7-4d63-8cdf-8f25506d5605", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "93d5919b-42ac-45f3-ac1c-a82317813f73", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "74d628eb-937f-476d-b641-7d4898fc038b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 0.18000000000000682, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네,", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "667b3e8a-a01a-4164-81ce-3cd0273913a2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d2d0cb41-8007-4e47-ab22-78408c848b55", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 0.35999999999999943, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7ae59643-d8a4-46f8-9b53-62ad89c1c349", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d6092e19-f39d-4b09-9d4d-081ce887fe75", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 0.480000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2b35d9f0-862e-425f-a984-d02a73097420", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "88fb787f-4982-4d70-b178-9d1e99041997", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 0.6000000000000085, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "082a3546-5e7b-41f3-ae6c-e1c8861e08fe", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9144fc73-a2de-46ae-9182-931d4fb1f893", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 0.7199999999999989, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다.", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "243ea6e2-aed0-4a50-b58d-1b830ec48e92", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "dc11b8a8-a952-41b6-8037-ba6dfa87d7d0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 1.0200000000000102, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "405252d1-893c-4959-aa54-cad084ca2d93", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6826c952-6407-4594-80ce-62427384cb03", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 1.2000000000000028, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "04383e01-8a8c-4ee4-9dc7-1765b10fadae", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "83c2c82b-249f-4e0b-bd6c-087bc194e0ac", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 1.3800000000000097, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "38f60579-d29f-47e9-bf0d-8eadd239fe40", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "33c62875-45fa-4658-ad5c-45ae4b0edaf8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 1.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "be0a6b3c-5b04-4259-a303-fc301cd17abf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6004d6ea-0bcb-42e9-bb4e-e6f48cae7ec1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 1.8000000000000114, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "52d243ef-a27f-4f65-930a-e892e22e805f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ef99295b-61c6-4fb4-bacf-739a317abfa5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 2.1000000000000085, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d9563a53-a36c-470f-b036-5a582bfcb285", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "41c138d6-0303-4bb8-b3d8-9b5ed5c2922a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 2.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f283b575-ce07-430e-9569-99b0030a716b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "32c383b4-1b9e-444f-bf6a-1f6a5b079cb8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 2.460000000000008, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fdca8bd9-df56-4345-8faf-d1dc8f3d00e4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fdea816f-e259-41bd-bbcb-67968d9e7199", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 2.8200000000000074, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "63ef22c9-e2f5-41fe-bc22-50f9657ca54b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "55f4b6a3-6f72-4d7f-bdd0-6cafdadde37b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 2.940000000000012, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8d10bb73-e87f-4573-abe8-df31ff74f6e1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "851ff782-f733-48a7-8e57-b4a98575cab9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 3.1200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9f592d2b-fdfd-4164-90a8-700aea42dbd2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "941a2aa9-350d-4b5d-a9fa-9333922a294d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 3.240000000000009, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 ", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5b9fcc6a-2c3e-4af1-a528-65f33e7f78da", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b4b236ea-97d2-46b9-b763-ff34c25ded3d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 3.3599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f018bc0d-ec18-442e-a39b-8d78618cc402", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6b0a37ba-ed7f-48f5-b8c9-64b75e3f31df", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 3.6000000000000085, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9b5d27d3-4fca-4246-9d30-71bfbcace2e1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "cc652758-e6e4-4095-aca2-4e6f5600ec05", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a63f9f36-df19-4cfe-b84a-0dc65fb474bb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "54ef610b-9fbd-402a-9206-e52613d9f391", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 3.8400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "78ba05b9-3ccd-45ef-aefa-65474f9b3959", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b6217c77-fb9f-4d85-b906-422837df5b03", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 3.9000000000000057, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a8c4ccd7-8f88-4e29-b4b6-991edcf2f5b3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0f33cb7c-44bb-4cc6-9468-874683cb8994", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1b425942-5e50-41ad-b41e-2343a848e8a8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "36068435-953d-4e72-926f-7e1ef8baa22b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 4.320000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e25f6210-01f2-48d1-8176-90f28fe2e088", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "06dc7dde-3203-4701-9abf-fc1bc81e17a5", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 4.6200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2eae7ea0-003d-4e1e-88e9-27eceab835f3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bb75e0b0-baec-4248-907e-fdc7a9e4b0a4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 5.1000000000000085, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "154fad31-794b-4e34-9ed4-915a4a3e810c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "724841fe-c10c-489c-9145-39ffa173ef23", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5ccbc6c6-907c-4a39-b2c7-19de3060f075", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f6f21c15-3fba-4119-b3de-1ae1d459f693", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 5.400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e1fd52af-0139-4621-87dc-5cdd082eeb74", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2132b902-6cc3-43bf-bd36-890333d04cc6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 87.24, - "duration": 1.3800000000000097, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 네, 알겠습니다. 그러면 제", - "words": [ - { - "word": " 네", - "start": 87.24, - "end": 87.3, - "confidence": 0.967, - "speaker": 1, - "punctuated_word": " 네", - "language": null - }, - { - "word": ",", - "start": 87.36, - "end": 87.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": ",", - "language": null - }, - { - "word": " 알", - "start": 87.48, - "end": 87.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 알", - "language": null - }, - { - "word": "겠", - "start": 87.54, - "end": 87.6, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 87.66, - "end": 87.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 87.78, - "end": 87.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 87.9, - "end": 87.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - }, - { - "word": " 그러", - "start": 88.2, - "end": 88.26, - "confidence": 0.988, - "speaker": 1, - "punctuated_word": " 그러", - "language": null - }, - { - "word": "면", - "start": 88.38, - "end": 88.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "면", - "language": null - }, - { - "word": " 제", - "start": 88.56, - "end": 88.62, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "67dd3243-c99d-47ec-b78e-93e991be8174", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d094e63d-9d84-4552-bf95-0b5262f7870a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 3.9599999999999937, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8ff771ce-68d5-4648-80a1-b90972d1fc3b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fbc1130d-5d65-47c2-a96c-f8fd47c534ae", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 4.139999999999986, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 92.76, - "end": 92.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cefe5206-1998-4d22-8ee8-e82dbb5c6a03", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d9781736-b3c9-4786-ba04-7396e5ab1218", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 4.259999999999991, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 92.76, - "end": 92.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 92.88, - "end": 92.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "df6acea2-573c-4f44-b330-5ed2fea1686e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "73d34ddd-f2d1-455c-aca6-ca75f62d5346", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 4.3799999999999955, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 92.76, - "end": 92.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 92.88, - "end": 92.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 93.0, - "end": 93.06, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "드", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1e3a2ce4-0472-4a9c-8ddd-58df4054627e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "02703bd7-28ff-409e-8985-b517e1295660", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 4.559999999999988, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 92.76, - "end": 92.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 92.88, - "end": 92.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 93.0, - "end": 93.06, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 93.12, - "end": 93.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - }, - { - "word": "겠", - "start": 93.18, - "end": 93.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3d548ab4-b8b6-4971-924e-5b56d72ddb1a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "084de65b-1206-445c-b1b2-9b7644600083", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 4.679999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠습", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 92.76, - "end": 92.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 92.88, - "end": 92.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 93.0, - "end": 93.06, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 93.12, - "end": 93.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - }, - { - "word": "겠", - "start": 93.18, - "end": 93.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 93.3, - "end": 93.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b30907fd-d097-48c4-bf4f-1b2475d7f2e2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "12c4972c-08c8-4749-99db-e4416515aa7e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 4.739999999999995, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠습니", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 92.76, - "end": 92.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 92.88, - "end": 92.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 93.0, - "end": 93.06, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 93.12, - "end": 93.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - }, - { - "word": "겠", - "start": 93.18, - "end": 93.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 93.3, - "end": 93.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 93.36, - "end": 93.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "feb1f1bd-24da-46e5-a988-c11f70c29c44", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fe3ffe60-c695-4373-9d44-5943c08477f0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 88.68, - "duration": 4.859999999999999, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "가 다른 수준으로 강의를 들을 수 있도록 제가 변경 신청을 도와드리겠습니다.", - "words": [ - { - "word": "가", - "start": 88.68, - "end": 88.74, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 다른", - "start": 88.98, - "end": 89.04, - "confidence": 0.997, - "speaker": 1, - "punctuated_word": " 다른", - "language": null - }, - { - "word": " 수", - "start": 89.28, - "end": 89.34, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": "준", - "start": 89.4, - "end": 89.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "준", - "language": null - }, - { - "word": "으로", - "start": 89.64, - "end": 89.7, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "으로", - "language": null - }, - { - "word": " 강", - "start": 90.0, - "end": 90.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 강", - "language": null - }, - { - "word": "의", - "start": 90.12, - "end": 90.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "의", - "language": null - }, - { - "word": "를", - "start": 90.3, - "end": 90.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "를", - "language": null - }, - { - "word": "들을", - "start": 90.54, - "end": 90.6, - "confidence": 0.995, - "speaker": 1, - "punctuated_word": "들을", - "language": null - }, - { - "word": " 수", - "start": 90.78, - "end": 90.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 90.9, - "end": 90.96, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 있", - "language": null - }, - { - "word": "도", - "start": 91.02, - "end": 91.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "도", - "language": null - }, - { - "word": "록", - "start": 91.08, - "end": 91.14, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "록", - "language": null - }, - { - "word": " 제", - "start": 91.38, - "end": 91.44, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 제", - "language": null - }, - { - "word": "가", - "start": 91.5, - "end": 91.56, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "가", - "language": null - }, - { - "word": " 변경", - "start": 91.8, - "end": 91.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 변경", - "language": null - }, - { - "word": " 신", - "start": 92.28, - "end": 92.34, - "confidence": 0.966, - "speaker": 1, - "punctuated_word": " 신", - "language": null - }, - { - "word": "청", - "start": 92.4, - "end": 92.46, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "청", - "language": null - }, - { - "word": "을", - "start": 92.58, - "end": 92.64, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 도", - "start": 92.76, - "end": 92.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 도", - "language": null - }, - { - "word": "와", - "start": 92.88, - "end": 92.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "와", - "language": null - }, - { - "word": "드", - "start": 93.0, - "end": 93.06, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 93.12, - "end": 93.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - }, - { - "word": "겠", - "start": 93.18, - "end": 93.24, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 93.3, - "end": 93.36, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 93.36, - "end": 93.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 93.48, - "end": 93.54, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7a5ac63c-03e8-4a76-94f4-2a1e623d9d33", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "54728d1c-ca86-453f-97cc-2a9c3358d139", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "84a0b143-8a28-4da5-880c-9e046cae5a85", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "95698300-2ff5-4682-a76e-842f50fabf40", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 0.23999999999999488, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "736d9cc0-e81f-42fa-b848-6e91128a544d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2e62f381-05c6-42a6-ada1-b6cf6da3bb98", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 0.5999999999999943, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7c0ebe39-ad5e-404b-80aa-4b60653c4580", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "ac653e32-6250-4fc3-9588-a814e257ddc8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 0.7199999999999989, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "72690406-b99d-449f-b4b5-ad93d179cebc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "32ae2245-2169-423e-81b4-a305680725c0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 0.8400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "61e4cc71-1c7c-4c1f-b540-3a404234e7e1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "63fa368b-13ce-432a-849c-310cb7050475", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 0.9599999999999937, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "96d3215b-df85-40ed-a362-15226105e8af", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8fd34048-8930-4731-892c-1c66c005b635", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 1.1400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "2c61a402-1459-4a76-9120-c6d8eff81e03", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4083165c-8e86-4a23-b918-1b99a2f55abf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 1.4399999999999977, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "61bbcc9f-3929-4d2a-8b03-40c5ae705197", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b5b88ec3-cbf8-4b5b-96ca-e65635507cce", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 1.5600000000000023, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 ", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b3e00d40-c196-4767-9434-e20cf325c449", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "350f2c88-1a5b-4098-b9ad-5662bcc5bc21", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 1.6799999999999926, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e1d003bb-03f5-4b8e-a89d-311c2cdda814", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7dff39b4-07ba-4cef-be6b-c237f4ced3d0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 1.7999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6e388307-72ef-4cab-aa7c-f4240b3645a7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "92770b23-5aaa-4030-bad6-9d07cb83090c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 1.9200000000000017, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9da1ab32-a8dc-4d6d-bb23-b917b9ff7c54", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "614dc260-4c33-46c7-bc88-6c8c92c0e7d4", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 2.0400000000000063, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설명", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - }, - { - "word": "명", - "start": 96.12, - "end": 96.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "명", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "43b4e737-640d-4ae0-9093-dbb8c18bed23", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "085d4e92-b961-4cf9-9f31-44eda703674b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 2.3400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - }, - { - "word": "명", - "start": 96.12, - "end": 96.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "명", - "language": null - }, - { - "word": " 부", - "start": 96.36, - "end": 96.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "탁", - "start": 96.42, - "end": 96.48, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "탁", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "15178464-afaf-49ff-803c-5534ce8bf60c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b05b634a-fede-4f10-9e3c-7206ed0594b7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 2.5799999999999983, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - }, - { - "word": "명", - "start": 96.12, - "end": 96.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "명", - "language": null - }, - { - "word": " 부", - "start": 96.36, - "end": 96.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "탁", - "start": 96.42, - "end": 96.48, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "탁", - "language": null - }, - { - "word": "드", - "start": 96.66, - "end": 96.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "드", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ec2ddf27-90bb-426f-a536-9ffc03c635ad", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "25135243-7bef-48e5-82bd-f2aebf8c9620", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 2.700000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - }, - { - "word": "명", - "start": 96.12, - "end": 96.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "명", - "language": null - }, - { - "word": " 부", - "start": 96.36, - "end": 96.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "탁", - "start": 96.42, - "end": 96.48, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "탁", - "language": null - }, - { - "word": "드", - "start": 96.66, - "end": 96.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 96.78, - "end": 96.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5d10c045-7e26-4bfe-8864-d4d5985c2e95", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7cfeb5b6-0ba9-4608-9b1d-2a6141fb6c1f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 2.760000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리겠", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - }, - { - "word": "명", - "start": 96.12, - "end": 96.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "명", - "language": null - }, - { - "word": " 부", - "start": 96.36, - "end": 96.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "탁", - "start": 96.42, - "end": 96.48, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "탁", - "language": null - }, - { - "word": "드", - "start": 96.66, - "end": 96.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 96.78, - "end": 96.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - }, - { - "word": "겠", - "start": 96.84, - "end": 96.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "075ddd9c-d61a-425e-b3e9-6a571b2aa4c6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f780d462-4344-4aad-8bfb-4bc990c2b41a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 2.9399999999999977, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리겠습니", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - }, - { - "word": "명", - "start": 96.12, - "end": 96.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "명", - "language": null - }, - { - "word": " 부", - "start": 96.36, - "end": 96.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "탁", - "start": 96.42, - "end": 96.48, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "탁", - "language": null - }, - { - "word": "드", - "start": 96.66, - "end": 96.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 96.78, - "end": 96.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - }, - { - "word": "겠", - "start": 96.84, - "end": 96.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 96.96, - "end": 97.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 97.02, - "end": 97.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f504aac7-fe49-4731-9468-8b2dbb5f2386", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "84d3090e-ed4f-4e2d-9742-0d7d6cc76542", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 94.14, - "duration": 3.0600000000000023, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 어떤 유형을 원하는지 잠시 설명 부탁드리겠습니다.", - "words": [ - { - "word": " 어", - "start": 94.14, - "end": 94.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 어", - "language": null - }, - { - "word": "떤", - "start": 94.32, - "end": 94.38, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "떤", - "language": null - }, - { - "word": " 유", - "start": 94.68, - "end": 94.74, - "confidence": 0.99, - "speaker": 1, - "punctuated_word": " 유", - "language": null - }, - { - "word": "형", - "start": 94.8, - "end": 94.86, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "형", - "language": null - }, - { - "word": "을", - "start": 94.92, - "end": 94.98, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "을", - "language": null - }, - { - "word": " 원", - "start": 95.04, - "end": 95.1, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 원", - "language": null - }, - { - "word": "하는", - "start": 95.22, - "end": 95.28, - "confidence": 0.987, - "speaker": 1, - "punctuated_word": "하는", - "language": null - }, - { - "word": "지", - "start": 95.52, - "end": 95.58, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "지", - "language": null - }, - { - "word": "잠", - "start": 95.76, - "end": 95.82, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "잠", - "language": null - }, - { - "word": "시", - "start": 95.88, - "end": 95.94, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "시", - "language": null - }, - { - "word": " 설", - "start": 96.0, - "end": 96.06, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 설", - "language": null - }, - { - "word": "명", - "start": 96.12, - "end": 96.18, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "명", - "language": null - }, - { - "word": " 부", - "start": 96.36, - "end": 96.42, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": " 부", - "language": null - }, - { - "word": "탁", - "start": 96.42, - "end": 96.48, - "confidence": 0.999, - "speaker": 1, - "punctuated_word": "탁", - "language": null - }, - { - "word": "드", - "start": 96.66, - "end": 96.72, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "드", - "language": null - }, - { - "word": "리", - "start": 96.78, - "end": 96.84, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "리", - "language": null - }, - { - "word": "겠", - "start": 96.84, - "end": 96.9, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "겠", - "language": null - }, - { - "word": "습", - "start": 96.96, - "end": 97.02, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "습", - "language": null - }, - { - "word": "니", - "start": 97.02, - "end": 97.08, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "니", - "language": null - }, - { - "word": "다.", - "start": 97.14, - "end": 97.2, - "confidence": 1.0, - "speaker": 1, - "punctuated_word": "다.", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6d0b9584-2cb0-4e26-9a0c-450cfe48a182", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e2d04060-47a9-4307-a0d0-52ee687afab6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "4bc3e66d-be97-4bf4-b94c-57b6a4a7f236", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2e512463-7c2f-49bb-b0b1-0652e356d024", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 0.18000000000000682, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "e5e886a8-9c6e-4e3b-923c-cb8947276629", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6d178093-a454-453e-88f1-364ad5627b35", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 0.4200000000000017, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c3f8eef8-c514-495b-b6a6-96a0af3407c4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "256ae415-f4aa-4e32-9207-71789769ce9c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 0.5400000000000063, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7de12b52-af64-4ba8-b9ed-61018a3ee387", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "513939eb-acfc-4460-9154-d833447d2ffd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 1.0799999999999983, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "866e0a06-d6d9-4785-ad3b-fc9ab1466c5f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5d289087-71a6-4c2f-9026-0e9cc78c24c9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 1.2600000000000051, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "86df026b-1c18-4421-b424-4c0f62504472", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0ebf263d-c2d5-49ed-af4e-7c0db546ed5a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 1.3799999999999955, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 ", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "8d95870c-05ce-4fd0-b062-d3bca270b1d4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e9021cb4-a27c-4310-8452-9a237c62d29a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 1.4399999999999977, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cce326bd-2007-415a-a002-a559fbbaff61", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d9dc4c63-734d-4fd1-bd14-24ec0f01c9ae", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 1.5600000000000023, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "14e33393-dd81-4f10-af1c-fa4d11b3b0b3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b8479b0b-a439-4bda-9710-a7bc7ada9173", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 1.7999999999999972, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cbb3990d-a6f9-44dd-9f2b-0af141fca1be", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "79b2d978-9185-4fd8-b19b-89bd76a01fab", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 2.1599999999999966, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d59022ce-e583-4161-b6a2-12e272313d67", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e4c946e7-c56d-48d0-b928-9ec1ff9ebceb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 2.3400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f363f7db-7b9e-40bf-9ecc-6ae784840744", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f466607a-950d-4b39-81b5-83ce1795335b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 2.5799999999999983, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "cbf76221-e77b-4b99-a2fd-293f1c38351f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bb1cc741-f516-4070-9dcb-a44cc47fdf55", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 2.700000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "946e1af7-1c69-4f29-8766-ecc0bcee820c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "09011db4-c214-4602-a03e-b93150faac0a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 3.0, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c07f482a-e10a-4ec1-8e1c-1438992d4c2f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "83114ab2-724b-4849-9baa-ac6a54bbd053", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 3.180000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "29db270f-e66f-48b5-ae20-c29980873c36", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b4e4b850-2648-4e44-990c-7ebe0ce26b6b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 3.3599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "55941616-ee2e-4193-90fd-b823b29780af", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8f0e12f3-3234-4b6e-9bcf-91b6c5529892", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 3.9000000000000057, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "19c8f2be-3326-4a03-9807-705420359aa6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d65417bf-98f9-4f46-a8f0-19af28fcca95", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1a37049c-d548-4761-b96a-f86e09dfb9ff", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "779436e5-cc09-4e5c-907c-f0f861dcfddd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 4.3799999999999955, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "80ddf418-7d0e-44ea-99ea-d902c3010e64", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5ad00a99-8702-44dc-9d55-87ac00c7f83a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 4.439999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 ", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a9a42800-417c-4b79-9e95-2b45f3950bef", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a23ba8f4-0b69-44b8-b555-84fd39680c45", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 4.560000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "071b4d1b-c87d-4663-adc5-239637673721", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b682674d-e8ed-4557-85ba-6f04981bdadf", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 4.680000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1f75ff73-1b67-4b78-9265-37e9d205d66a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "25187450-dfad-4787-92eb-3334f9a36eff", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 4.859999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게 할", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b5c7c7a6-c4ef-4349-8cc5-a6af4338cc54", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "406c5ac2-f294-4383-ad37-a783c987174c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 4.980000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게 할 수", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "58e76e56-601f-4d24-852c-7ee9191b8de3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c7fd2acf-628f-4cd7-bc5d-e0b9f60d25d3", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 5.219999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 능력은 거의 부족하니까 독해를 쉽게 할 수 있", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a5dacaa8-1094-49f0-b641-e4b7f774b759", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e4c7ee93-ceb3-4397-b2c7-ff38d73c823a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 97.86, - "duration": 1.3799999999999955, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 저는 일단 독해 ", - "words": [ - { - "word": " 저", - "start": 97.86, - "end": 97.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 저", - "language": null - }, - { - "word": "는", - "start": 97.98, - "end": 98.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 일", - "start": 98.22, - "end": 98.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 일", - "language": null - }, - { - "word": "단", - "start": 98.34, - "end": 98.4, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "단", - "language": null - }, - { - "word": " 독", - "start": 98.88, - "end": 98.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 99.06, - "end": 99.12, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3b66c385-9b69-439c-bc7c-7fcae5b8a6e8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4f4ec51f-ecb1-4d8f-b8b4-9047d2e45992", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 4.02000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고,", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "49607b54-a5b8-4663-8571-853ddd6c32ea", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "7a024b94-b9f0-4985-b9c2-837b24213486", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 4.800000000000011, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d4fa6c40-e6dc-49e8-b873-d4097b0c8aaf", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "50c930af-ad08-4c43-a7c5-57d9c5ecaa11", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 4.920000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c5fdaddb-95f3-4a83-84e3-32462e9590b4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3bcc3522-2ebc-41bc-8f64-dcb45ef2bc5f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 5.160000000000011, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d374da50-c614-4cf7-9c78-6966a385ea8a", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "009b9655-4633-49a5-820b-a3e34761addd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 5.340000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fb1e6cb3-2568-4115-a557-bb3115a70d88", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "991e6fa7-8f53-4811-99f8-781f0d4d72ed", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 5.460000000000008, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고 생", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "053a1da9-b4ca-4504-a5bd-09bd5680fbe8", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9a15b8ae-2cf1-4a48-81fa-38b4575a24f1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 5.640000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고 생각", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f418fb64-2c52-477e-8e1b-8fe0804646d1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "56eb9413-c6a4-4bd4-b1d7-d828dab9a804", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 5.88000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까 독해를 쉽게 할 수 있고, 부담 없고 생각 없", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - }, - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "77fdf65d-a2c7-45b1-8946-39dd645374e7", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1207bc08-aae4-4179-9395-be16d64b6759", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 99.24, - "duration": 1.980000000000004, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "능력은 거의 부족하니까", - "words": [ - { - "word": "능", - "start": 99.24, - "end": 99.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "능", - "language": null - }, - { - "word": "력", - "start": 99.36, - "end": 99.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "력", - "language": null - }, - { - "word": "은", - "start": 99.6, - "end": 99.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "은", - "language": null - }, - { - "word": " 거", - "start": 99.96, - "end": 100.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 거", - "language": null - }, - { - "word": "의", - "start": 100.14, - "end": 100.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "의", - "language": null - }, - { - "word": " 부", - "start": 100.38, - "end": 100.44, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "족", - "start": 100.5, - "end": 100.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "족", - "language": null - }, - { - "word": "하", - "start": 100.8, - "end": 100.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "하", - "language": null - }, - { - "word": "니", - "start": 100.98, - "end": 101.04, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "니", - "language": null - }, - { - "word": "까", - "start": 101.16, - "end": 101.22, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "까", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "472a7c9a-dfbd-4314-91f4-f0bff1f30aa5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "55d93acd-6fbf-4df6-a21e-695890960dda", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 3.5999999999999943, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "07e1145a-1cd1-464e-b051-3c05b1cb3d1c", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b218460a-16c0-4943-9f04-0bf042b08e61", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 3.780000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 ", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "86ed9f0d-8f3d-4630-9b27-2b234272bded", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "882dccf4-b8cd-4ce0-a01b-f34093199ed7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 3.8999999999999915, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fd9add0e-5ff0-4ab3-9c8e-20848479aba5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "74ef06bd-f0a2-4925-a4af-6e5c84017c2b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 4.079999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b642a7e9-7e3b-4735-9307-09de3dda8a60", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "071e7e33-9373-4a93-b6c8-1fee255887f7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 4.259999999999991, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9a9284d7-f2df-4d21-aae3-2679a5b6bfa1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fd009c0e-a03b-4550-a75e-aa6e268f2e45", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 4.439999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "fb483537-4803-48e1-8ea0-98dee9e5b6a6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "da241884-c442-431a-91bd-ab3ffd1281e1", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 4.679999999999993, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "10c57dc6-9b91-43c4-9edd-9cf2d35c626f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c9c7e0da-7bd2-4a85-a1b1-bf0dd7893724", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 4.859999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "73bb3852-4585-4f98-9a2a-ceb9f78a4f7b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a2d62be5-00e6-4702-a0e8-cf5d034bcca2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 5.099999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "207a97d7-99b6-451b-aad7-96871a9c80b3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "fb166941-30d9-443e-aab1-d12f16051cb2", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 5.280000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교재", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d5904d18-1509-424a-96d3-201113e94995", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e17a224d-41ed-478c-9550-63d35d97e98f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 5.3999999999999915, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교재가", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": "가", - "start": 107.04, - "end": 107.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9ef4b522-d44d-4f7e-a364-00e62985fb89", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "2905eb64-caea-4179-99b5-7b6ecc884641", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 5.579999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고, 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - }, - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": "가", - "start": 107.04, - "end": 107.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 필", - "start": 107.22, - "end": 107.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 필", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5dc07ea5-27c6-426d-a187-f4a6ce97f5fa", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "864b8152-c3aa-475e-be94-649d8e514e6f", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 101.7, - "duration": 1.5600000000000023, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 독해를 쉽게 할 수 있고,", - "words": [ - { - "word": " 독", - "start": 101.7, - "end": 101.76, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 독", - "language": null - }, - { - "word": "해", - "start": 101.94, - "end": 102.0, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "를", - "start": 102.18, - "end": 102.24, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": "쉽", - "start": 102.36, - "end": 102.42, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "쉽", - "language": null - }, - { - "word": "게", - "start": 102.48, - "end": 102.54, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "게", - "language": null - }, - { - "word": " 할", - "start": 102.66, - "end": 102.72, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 할", - "language": null - }, - { - "word": " 수", - "start": 102.78, - "end": 102.84, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있", - "start": 103.02, - "end": 103.08, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있", - "language": null - }, - { - "word": "고,", - "start": 103.2, - "end": 103.26, - "confidence": 0.94, - "speaker": 2, - "punctuated_word": "고,", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ed9f50db-6243-4b10-808b-256968de8028", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "bb0ee3a3-f834-4b2c-bf45-3934b37ad46a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 103.98, - "duration": 3.3599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요", - "words": [ - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": "가", - "start": 107.04, - "end": 107.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 필", - "start": 107.22, - "end": 107.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 필", - "language": null - }, - { - "word": "요", - "start": 107.28, - "end": 107.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "778cbe20-a3e8-4432-963b-a42d261194b1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "6f6fbcfc-f7fa-40f6-a74e-e2882b130bb9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 103.98, - "duration": 3.5999999999999943, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해", - "words": [ - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": "가", - "start": 107.04, - "end": 107.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 필", - "start": 107.22, - "end": 107.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 필", - "language": null - }, - { - "word": "요", - "start": 107.28, - "end": 107.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": "해", - "start": 107.52, - "end": 107.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1b3344e3-9782-41b0-8a18-8e36bef35550", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8b5abc4b-501b-4aa3-a1bf-a3bacab7140e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 103.98, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해요", - "words": [ - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": "가", - "start": 107.04, - "end": 107.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 필", - "start": 107.22, - "end": 107.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 필", - "language": null - }, - { - "word": "요", - "start": 107.28, - "end": 107.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": "해", - "start": 107.52, - "end": 107.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "요", - "start": 107.64, - "end": 107.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "240b3926-0747-4288-ac39-9b1682a98a45", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "99c6a268-d12c-4bf3-bb0e-b0b36d61a5fd", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 103.98, - "duration": 3.8999999999999915, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해요.", - "words": [ - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": "가", - "start": 107.04, - "end": 107.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 필", - "start": 107.22, - "end": 107.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 필", - "language": null - }, - { - "word": "요", - "start": 107.28, - "end": 107.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": "해", - "start": 107.52, - "end": 107.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "요", - "start": 107.64, - "end": 107.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 107.82, - "end": 107.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7599e8fe-d300-4d11-8c41-5aec2b2fe1b3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "b2c094b0-4ac4-458f-9488-ec99d289336b", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 103.98, - "duration": 3.8999999999999915, - "is_final": true, - "speech_final": true, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 부담 없고 생각 없이 읽을 수 있는 그런 교재가 필요해요.", - "words": [ - { - "word": " 부", - "start": 103.98, - "end": 104.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 부", - "language": null - }, - { - "word": "담", - "start": 104.1, - "end": 104.16, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "담", - "language": null - }, - { - "word": " 없", - "start": 104.34, - "end": 104.4, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "고", - "start": 104.52, - "end": 104.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "고", - "language": null - }, - { - "word": " 생", - "start": 104.64, - "end": 104.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 생", - "language": null - }, - { - "word": "각", - "start": 104.82, - "end": 104.88, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "각", - "language": null - }, - { - "word": " 없", - "start": 105.06, - "end": 105.12, - "confidence": 0.997, - "speaker": 2, - "punctuated_word": " 없", - "language": null - }, - { - "word": "이", - "start": 105.24, - "end": 105.3, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "이", - "language": null - }, - { - "word": "읽", - "start": 105.54, - "end": 105.6, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "읽", - "language": null - }, - { - "word": "을", - "start": 105.72, - "end": 105.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "을", - "language": null - }, - { - "word": " 수", - "start": 105.9, - "end": 105.96, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 106.08, - "end": 106.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 106.32, - "end": 106.38, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 106.5, - "end": 106.56, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 교", - "start": 106.74, - "end": 106.8, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 교", - "language": null - }, - { - "word": "재", - "start": 106.92, - "end": 106.98, - "confidence": 0.996, - "speaker": 2, - "punctuated_word": "재", - "language": null - }, - { - "word": "가", - "start": 107.04, - "end": 107.1, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "가", - "language": null - }, - { - "word": " 필", - "start": 107.22, - "end": 107.28, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 필", - "language": null - }, - { - "word": "요", - "start": 107.28, - "end": 107.34, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": "해", - "start": 107.52, - "end": 107.58, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "해", - "language": null - }, - { - "word": "요", - "start": 107.64, - "end": 107.7, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "요", - "language": null - }, - { - "word": ".", - "start": 107.82, - "end": 107.88, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": ".", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "75e1603a-3dab-4d64-a9b3-1f7e02651173", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "8ea3a569-ee40-49be-b77d-a246070ab819", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 0.060000000000002274, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a4fae164-b390-475f-8686-3f972c65e3ac", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4ee99e4c-1b37-41b2-83d9-a421ceaf66eb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 0.18000000000000682, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f0230b61-e758-4383-874b-053206de70cb", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1aba98f9-cf80-4e77-9f07-c65286af9420", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 0.5400000000000063, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d339d6b7-be8b-43ee-bc9f-3f57b1b06ca4", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e7a2e32b-95e3-4359-bdf7-5bd61672c62a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 1.0800000000000125, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d02a1de5-d507-44a8-9650-fc6c31fb178e", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "e42dbd07-9ba1-47e6-aa65-bff217fef50e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 1.2000000000000028, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "db35f864-3dd6-4c35-a175-ef67ca376223", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4395d54c-545d-4524-8898-4e80edd43d99", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 1.3200000000000074, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "f462b383-9053-4f08-af82-4f89036df4fc", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1dd48c1e-a76b-46c7-bab5-6e547426de4d", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 1.9200000000000017, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "433295cb-ff53-44a8-bfc4-16dbd3bc48f9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "734f10fa-22c0-47c7-89ff-c6591d8b4b82", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 2.160000000000011, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a5adf240-2f81-4141-a472-f12f4e82ac38", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "c4fd16dc-4e18-49d0-a437-166bcddf91d9", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 2.3400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "3e6c5adb-a2c4-43d5-879c-c8af95793a1d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4080a7b2-c5eb-44bc-a435-57ff5305bd96", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 2.5200000000000102, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "0da4bcc3-3ab8-414f-85d6-d9ef9b35a0b9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "3e2278fe-7dce-411c-b637-105d3ddebe36", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 3.180000000000007, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a152530f-f3c5-4941-b12d-2c3a8695d374", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "550c83e3-4489-4189-a3c4-ba358a2cd304", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 3.3599999999999994, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "796ab182-b5b8-40d9-877e-c0b19be8a31d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "0151287d-ed82-4afb-93b0-bbd78f2e7882", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 3.480000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "1d0a4225-8f81-4336-ac9d-f915eb24c935", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "96d96b95-17da-476f-a5d7-6cecb989f867", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 3.6000000000000085, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "43eea37d-6159-4bc6-9063-0c73143950c9", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9a22ef10-6270-400f-9924-78d83365f6ff", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 3.719999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a854a7a5-de3b-43e3-bfaa-da1631f4e73d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "46b53c9b-a2b9-46b7-ae11-720c6591f087", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 4.0800000000000125, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9f9adfcf-6603-4776-8386-1d685abe0b52", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "1fb60097-142c-43b1-b47f-7a6bfebb4260", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 4.260000000000005, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6a6286a1-9576-4ed6-8a8a-475808839779", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "467adf11-35ae-434b-bbd1-e2dcab8bff03", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 4.5, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런 강", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "a10cad78-9bc4-426f-8405-f740f1f96160", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "9dd52c83-a51a-47c8-b1b0-74c11acc0901", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 4.740000000000009, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런 강좌", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b142f98c-39c7-4295-95be-b01460a5f3e3", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "d6018d59-4c16-4fa8-9351-501d5f74c4fa", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 4.980000000000004, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를 다시 복습하고 다져볼 수 있는 그런 강좌랑", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - }, - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "c9c3d8e3-35c7-452a-b4e1-9a0ba7610789", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "947ebc20-5340-403a-8096-0571ff12624c", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 108.6, - "duration": 1.3200000000000074, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 문법에서는 기초를", - "words": [ - { - "word": " 문", - "start": 108.6, - "end": 108.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 문", - "language": null - }, - { - "word": "법", - "start": 108.72, - "end": 108.78, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "법", - "language": null - }, - { - "word": "에서는", - "start": 109.08, - "end": 109.14, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "에서는", - "language": null - }, - { - "word": " 기", - "start": 109.62, - "end": 109.68, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 기", - "language": null - }, - { - "word": "초", - "start": 109.74, - "end": 109.8, - "confidence": 0.989, - "speaker": 2, - "punctuated_word": "초", - "language": null - }, - { - "word": "를", - "start": 109.86, - "end": 109.92, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "를", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "9d4b4999-e495-4dad-a3c4-245680a50b14", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "26e670d0-514d-45de-95de-5a37682e348e", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 3.1200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "bc27a43b-8ffc-4f80-ac75-5f0c9e19ae9b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "35f2dd27-f710-4cc9-a11b-98fd61e3a4e7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 3.720000000000013, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 ", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5ad1c794-1cf0-4da0-a429-ed9bdb9937f1", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "69f4fdee-94bd-4663-9494-f90c84161237", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 3.8400000000000034, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "7c23a9a8-603f-479d-97dc-3a14eb17111b", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "24fe3c7c-b95d-4a70-834b-a9900f32ede7", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 4.02000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "ca06f45e-9eea-4b2c-bb09-f97a26f49186", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "72ec57f9-6cd5-4139-8440-6d477584f664", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 4.200000000000003, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "166b5367-1ef6-40e0-ae27-5dccfafde3b2", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "5558ed34-cdef-4da1-bff1-f593a9fbe506", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 4.440000000000012, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "b346213e-ea81-4fed-a087-408767f5048f", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "87c68d67-7341-40ee-987a-a17ec31c2e83", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 4.560000000000002, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "90cc0a6b-7049-44d3-a2ba-fee581042798", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4877f4be-50b0-421a-b219-6720f9a9acf0", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 4.859999999999999, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금 현재", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 현재", - "start": 115.26, - "end": 115.32, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "d872fdd7-e173-4d04-842f-0b5536e10fc0", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "92e05d28-558d-4056-bb8f-3add5f2c3e21", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 5.280000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금 현재 레", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 현재", - "start": 115.26, - "end": 115.32, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 레", - "start": 115.68, - "end": 115.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "837b8247-a030-476b-a7a2-a2e87829e2a6", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f74177e0-f19c-4d53-b726-89974dae600a", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 5.400000000000006, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - }, - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 현재", - "start": 115.26, - "end": 115.32, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 레", - "start": 115.68, - "end": 115.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 115.8, - "end": 115.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "6327d575-8e3e-4fe0-9fc4-e2d440f50dc5", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "f149585d-4c9a-4789-8972-72845c20d0fb", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 110.46, - "duration": 1.5, - "is_final": true, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": " 다시 복습하고 다져", - "words": [ - { - "word": " 다시", - "start": 110.46, - "end": 110.52, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 다시", - "language": null - }, - { - "word": " 복", - "start": 110.7, - "end": 110.76, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 복", - "language": null - }, - { - "word": "습", - "start": 110.88, - "end": 110.94, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "습", - "language": null - }, - { - "word": "하고", - "start": 111.06, - "end": 111.12, - "confidence": 0.932, - "speaker": 2, - "punctuated_word": "하고", - "language": null - }, - { - "word": " 다", - "start": 111.72, - "end": 111.78, - "confidence": 0.993, - "speaker": 2, - "punctuated_word": " 다", - "language": null - }, - { - "word": "져", - "start": 111.9, - "end": 111.96, - "confidence": 0.459, - "speaker": 2, - "punctuated_word": "져", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "30381bb9-0d5d-4ffd-9150-c692b22ff933", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "a172b418-ccf4-4fd9-9e09-8f9232c81158", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 112.02, - "duration": 4.02000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보", - "words": [ - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 현재", - "start": 115.26, - "end": 115.32, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 레", - "start": 115.68, - "end": 115.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 115.8, - "end": 115.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "보", - "start": 115.98, - "end": 116.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "보", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "5875ccce-175d-4410-acca-e24eff561b4d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "749f670d-76ad-4b9c-a695-424d2a212ff8", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 112.02, - "duration": 4.140000000000001, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보다", - "words": [ - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 현재", - "start": 115.26, - "end": 115.32, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 레", - "start": 115.68, - "end": 115.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 115.8, - "end": 115.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "보", - "start": 115.98, - "end": 116.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "다", - "start": 116.1, - "end": 116.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "다", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "64a07e1d-9321-4652-9166-7a2787480975", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "26a0ce29-62fe-471b-a0bf-6f8c528d4816", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 112.02, - "duration": 4.439999999999998, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보다 더", - "words": [ - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 현재", - "start": 115.26, - "end": 115.32, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 레", - "start": 115.68, - "end": 115.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 115.8, - "end": 115.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "보", - "start": 115.98, - "end": 116.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "다", - "start": 116.1, - "end": 116.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 더", - "start": 116.4, - "end": 116.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 더", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "63ed5ba8-8ba7-4cdd-9923-e8574abbce9d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "22285695-fb6a-41aa-bbbf-090d611325d6", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - }, - { - "type": "Results", - "start": 112.02, - "duration": 4.6200000000000045, - "is_final": false, - "speech_final": false, - "from_finalize": false, - "channel": { - "alternatives": [ - { - "transcript": "볼 수 있는 그런 강좌랑 듣기는 지금 현재 레벨보다 더 ", - "words": [ - { - "word": "볼", - "start": 112.02, - "end": 112.08, - "confidence": 0.96, - "speaker": 2, - "punctuated_word": "볼", - "language": null - }, - { - "word": " 수", - "start": 112.14, - "end": 112.2, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 수", - "language": null - }, - { - "word": " 있는", - "start": 112.26, - "end": 112.32, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 있는", - "language": null - }, - { - "word": " 그", - "start": 112.62, - "end": 112.68, - "confidence": 0.977, - "speaker": 2, - "punctuated_word": " 그", - "language": null - }, - { - "word": "런", - "start": 112.8, - "end": 112.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "런", - "language": null - }, - { - "word": " 강", - "start": 113.04, - "end": 113.1, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": " 강", - "language": null - }, - { - "word": "좌", - "start": 113.28, - "end": 113.34, - "confidence": 0.995, - "speaker": 2, - "punctuated_word": "좌", - "language": null - }, - { - "word": "랑", - "start": 113.52, - "end": 113.58, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "랑", - "language": null - }, - { - "word": "듣", - "start": 114.24, - "end": 114.3, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "듣", - "language": null - }, - { - "word": "기", - "start": 114.42, - "end": 114.48, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "기", - "language": null - }, - { - "word": "는", - "start": 114.6, - "end": 114.66, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "는", - "language": null - }, - { - "word": " 지", - "start": 114.84, - "end": 114.9, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 지", - "language": null - }, - { - "word": "금", - "start": 114.96, - "end": 115.02, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "금", - "language": null - }, - { - "word": " 현재", - "start": 115.26, - "end": 115.32, - "confidence": 0.998, - "speaker": 2, - "punctuated_word": " 현재", - "language": null - }, - { - "word": " 레", - "start": 115.68, - "end": 115.74, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 레", - "language": null - }, - { - "word": "벨", - "start": 115.8, - "end": 115.86, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": "벨", - "language": null - }, - { - "word": "보", - "start": 115.98, - "end": 116.04, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "보", - "language": null - }, - { - "word": "다", - "start": 116.1, - "end": 116.16, - "confidence": 0.999, - "speaker": 2, - "punctuated_word": "다", - "language": null - }, - { - "word": " 더", - "start": 116.4, - "end": 116.46, - "confidence": 1.0, - "speaker": 2, - "punctuated_word": " 더", - "language": null - } - ], - "confidence": 1.0, - "languages": [] - } - ] - }, - "metadata": { - "request_id": "54a1d1a1-f3e6-4fe8-b00c-818eee051c3d", - "model_info": { - "name": "", - "version": "", - "arch": "" - }, - "model_uuid": "4fd116af-3301-4e8c-bea6-ddcc46641048", - "extra": null - }, - "channel_index": [ - 0, - 1 - ] - } -] diff --git a/crates/transcript/src/accumulator/mod.rs b/crates/transcript/src/accumulator/mod.rs index 1e0040d1f9..847da5c244 100644 --- a/crates/transcript/src/accumulator/mod.rs +++ b/crates/transcript/src/accumulator/mod.rs @@ -482,18 +482,26 @@ mod tests { } macro_rules! fixture_test { - ($test_name:ident, $file:literal) => { + ($test_name:ident, $json:expr) => { #[test] fn $test_name() { let responses: Vec = - serde_json::from_str(include_str!(concat!("fixtures/", $file, ".json"))) - .expect("fixture must parse as StreamResponse[]"); + serde_json::from_str($json).expect("fixture must parse as StreamResponse[]"); assert_valid_output(&replay(&responses)); } }; } - fixture_test!(deepgram_fixture_produces_valid_output, "deepgram_1"); - fixture_test!(soniox_fixture_produces_valid_output, "soniox_1"); - fixture_test!(soniox_korean_fixture_produces_valid_output, "soniox_2"); + fixture_test!( + deepgram_fixture_produces_valid_output, + hypr_data::english_1::DEEPGRAM_JSON + ); + fixture_test!( + soniox_fixture_produces_valid_output, + hypr_data::english_1::SONIOX_JSON + ); + fixture_test!( + soniox_korean_fixture_produces_valid_output, + hypr_data::korean_1::SONIOX_JSON + ); }